changed wording

This commit is contained in:
Mustafa 2014-03-14 13:33:08 -07:00
parent 5440535a7a
commit baa9636352

View file

@ -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, 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. 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[ @racketblock[
(define (play-ugen ugen) (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?]) ()]{ @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.
} }