diff --git a/rsc3/rsc3.scrbl b/rsc3/rsc3.scrbl index 2170b5f..94f34cd 100644 --- a/rsc3/rsc3.scrbl +++ b/rsc3/rsc3.scrbl @@ -55,7 +55,7 @@ The same as audition but without the socket creation step. (audition uses play) Using the given socket, plays sound generated by the ugen. This creates a synthdef, sends it to the server using the name "anonymous" and group 1, and creates a new synth. -Example: +This example, play-ugen, is equivalent to the function audition. @racketblock[ (define (play-ugen ugen) @@ -71,7 +71,8 @@ Sends an OSC message to the server using the socket fd. } @defproc[(async [fd (or udp:socket? tcp:socket?)] [message message?]) ()]{ -Sends an OSC message to the server using the socket fd and waits (blocks) for a /done message fro mteh server. +Sends an OSC message to the server using the socket fd and waits (blocks) +for a /done message from the server. }