From a7503d16e4cac0c7da3a184fee637ae0796790a5 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 9 Oct 2015 18:45:30 -0400 Subject: [PATCH] Clean up whitespace --- minimart/examples/chat-actor.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimart/examples/chat-actor.rkt b/minimart/examples/chat-actor.rkt index 6108b07..fa04d1b 100644 --- a/minimart/examples/chat-actor.rkt +++ b/minimart/examples/chat-actor.rkt @@ -18,7 +18,7 @@ (advertise (tcp-channel us them ?) #:meta-level 1) (subscribe `(,($ who) says ,($ what)) (say who "says: ~a" what)) - + (advertise `(,user says ,?)) (subscribe (tcp-channel them us ($ bs)) #:meta-level 1 (send `(,user says ,(string-trim (bytes->string/utf-8 bs)))))