Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos. #57

Merged
merged 1 commit into from Feb 14, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions iced.md
Expand Up @@ -591,7 +591,7 @@ straight-ahead CoffeeScript library. It's quite useful for more advanced
control flows, so we've included it in the main runtime library. control flows, so we've included it in the main runtime library.


The `Rendezvous` is similar to a blocking condition variable (or a The `Rendezvous` is similar to a blocking condition variable (or a
"Hoare sytle monitor") in threaded programming. "Hoare style monitor") in threaded programming.


#### iced.Rendezvous.id(i,[multi]).defer slots... #### iced.Rendezvous.id(i,[multi]).defer slots...


Expand All @@ -605,7 +605,7 @@ filled with the arguments to that callback.


Also, note the optional boolean flag `multi`. By default, a function Also, note the optional boolean flag `multi`. By default, a function
generated by `defer` can be called only once, and will generate an generated by `defer` can be called only once, and will generate an
error on subsequent calls. Only with the `mutli` flag set to `true` error on subsequent calls. Only with the `multi` flag set to `true`
(and only in the case of a `Rendezvous`), can this restriction be (and only in the case of a `Rendezvous`), can this restriction be
relaxed. relaxed.


Expand Down