From 3674dc439ff0a44d62e57f32319ad1112c162e3d Mon Sep 17 00:00:00 2001 From: Jason Cooke Date: Fri, 13 Dec 2019 07:05:44 +1300 Subject: [PATCH] docs: fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5025d52..11961fe 100644 --- a/README.md +++ b/README.md @@ -353,7 +353,7 @@ straight-ahead JavaScript library. It's quite useful for more advanced control flows, so we've included it in the main runtime library. The `Rendezvous` is similar to a blocking condition variable (or a -"Hoare sytle monitor") in threaded programming. +"Hoare style monitor") in threaded programming. #### tame.Rendezvous.id (i).defer (slots,...) @@ -505,7 +505,7 @@ Tame has a workaround to this problem. When a tamed function is entered, the runtime will find the first argument to the function that was output by `defer()`. Such callbacks are annotated to contain the file, line and function where they were created. They also are -annotated to hold a refernce to `defer()`-generated callback passed to +annotated to hold a reference to `defer()`-generated callback passed to the function in which they were created. This chaining creates an implicit stack that can be walked when an exception is thrown.