diff options
author | Prayag Verma <prayag.verma@gmail.com> | 2016-02-01 01:00:54 +0530 |
---|---|---|
committer | Prayag Verma <prayag.verma@gmail.com> | 2016-02-01 01:00:54 +0530 |
commit | fe951255220f05a76ec8ac193c19e4094d9c29d6 (patch) | |
tree | 863a4f47d711647b48c885ef8246f8d7db51b49e | |
parent | ec1abdef97644e12bf64cdd7513070e1e6ac24a0 (diff) | |
download | Nim-fe951255220f05a76ec8ac193c19e4094d9c29d6.tar.gz |
Fixes typo in doc/manual/threads.txt
Spelling mistake fixed `overriden` >`overridden`
-rw-r--r-- | doc/manual/threads.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/threads.txt b/doc/manual/threads.txt index f2b79a34f..a1895362c 100644 --- a/doc/manual/threads.txt +++ b/doc/manual/threads.txt @@ -130,7 +130,7 @@ that ``spawn`` takes is restricted: programmer to be careful. * ``ref`` parameters are deeply copied which is a subtle semantic change and can cause performance problems but ensures memory safety. This deep copy - is performed via ``system.deepCopy`` and so can be overriden. + is performed via ``system.deepCopy`` and so can be overridden. * For *safe* data exchange between ``f`` and the caller a global ``TChannel`` needs to be used. However, since spawn can return a result, often no further communication is required. |