From baa9636352b26c49108e5ba373906cb75ef39dba Mon Sep 17 00:00:00 2001 From: Mustafa Date: Fri, 14 Mar 2014 13:33:08 -0700 Subject: [PATCH] changed wording --- rsc3/rsc3.scrbl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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. }