diff options
author | Araq <rumpf_a@web.de> | 2014-11-15 11:10:13 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-11-15 11:10:13 +0100 |
commit | f7dca91344392a200392bdbd5d2d7c5167298e93 (patch) | |
tree | ff064678872c4a6ce43ee41b292d12feeb223ece /doc/manual/procs.txt | |
parent | 9e00d3aec2da69c23cdb5dba0e3f654e99ded379 (diff) | |
download | Nim-f7dca91344392a200392bdbd5d2d7c5167298e93.tar.gz |
fixes #619
Diffstat (limited to 'doc/manual/procs.txt')
-rw-r--r-- | doc/manual/procs.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/manual/procs.txt b/doc/manual/procs.txt index e03845d76..9ddae6230 100644 --- a/doc/manual/procs.txt +++ b/doc/manual/procs.txt @@ -84,7 +84,9 @@ current module: var exportedVar*: int const exportedConst* = 78 - type ExportedType* = distinct int + type + ExportedType* = object + exportedField*: int Method call syntax @@ -107,6 +109,8 @@ to supply any type of first argument for procedures: Another way to look at the method call syntax is that it provides the missing postfix notation. +See also: `Limitations of the method call syntax`_. + Properties ---------- |