diff options
Diffstat (limited to 'doc/manual.txt')
-rwxr-xr-x | doc/manual.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 89d52d534..b28aa28cc 100755 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -1507,7 +1507,7 @@ Syntax:: Example: .. code-block:: nimrod - proc p(x, y: int): int {.optional.} = + proc p(x, y: int): int = return x + y discard p(3, 4) # discard the return value of `p` @@ -3473,6 +3473,8 @@ a `thead-local`:idx: variable then: Actor model ----------- +**Caution**: This section is already outdated! XXX + Nimrod supports the `actor model`:idx: of concurrency natively: .. code-block:: nimrod |