From cfd5873bdd9fa1e1590c5b73418dd65b1657bc23 Mon Sep 17 00:00:00 2001 From: orthographic-pedant Date: Wed, 7 Oct 2015 15:23:36 -0400 Subject: [PATCH] Fix typographical error(s) Changed continous to continuous in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a64535d..39c73c7 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ mcount := socket.recv( tsl ); **CTRL+C Handling** it's a bit tricky. On windows signal handling is different, than in posix systems. -Blocking calls won't receive SIGINT, just block continously. To overcome this issue, +Blocking calls won't receive SIGINT, just block continuously. To overcome this issue, the installed handler terminates the contexts, so blocking calls like `recv`, `poll`, etc... will receive `ETERM`. It's just on Windows.