Fix cosmetic error in code example (#2705)

* Fix cosmetic error in code example

* Improve code example
This commit is contained in:
Atharva Raykar 2019-06-21 18:58:21 +05:30 committed by Ben Greenman
parent ec5b45e4f8
commit d6ffc5b820

View File

@ -101,8 +101,9 @@ items then send the results to the main thread.
(match (thread-receive)
[(list oper1 oper2 result-thread)
(thread-send result-thread
(format "~a + ~a = ~a"
(format "~a ~a ~a = ~a"
oper1
(object-name operation)
oper2
(operation oper1 oper2)))
(loop)])))))