summary refs log tree commit diff stats
path: root/doc/manual/procs.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-11-15 11:10:13 +0100
committerAraq <rumpf_a@web.de>2014-11-15 11:10:13 +0100
commitf7dca91344392a200392bdbd5d2d7c5167298e93 (patch)
treeff064678872c4a6ce43ee41b292d12feeb223ece /doc/manual/procs.txt
parent9e00d3aec2da69c23cdb5dba0e3f654e99ded379 (diff)
downloadNim-f7dca91344392a200392bdbd5d2d7c5167298e93.tar.gz
fixes #619
Diffstat (limited to 'doc/manual/procs.txt')
-rw-r--r--doc/manual/procs.txt6
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
 ----------
t;jubalh@iodoru.org> 2021-07-12 09:32:44 +0200 committer Michael Vetter <jubalh@iodoru.org> 2021-07-12 09:32:44 +0200 Mention OX in README' href='/danisanti/profani-tty/commit/README.md?id=edb32f9798b441b96356a2d092d8e9aa4dc7e1fa'>edb32f97 ^
d0dfe530 ^
e1d45f05 ^
d240eb62 ^
d0dfe530 ^


65e90dba ^



7500100a ^
65e90dba ^



e309e686 ^
65e90dba ^
30c02e26 ^

65e90dba ^





fc93546b ^
65e90dba ^



d240eb62 ^
65e90dba ^
a1d37dda ^
5709f5a2 ^
65e90dba ^

2db1118f ^
65e90dba ^
4484c2b0 ^
65e90dba ^

2db1118f ^
65e90dba ^
63b996a3 ^
a1dc3d12 ^
e1d45f05 ^
2db1118f ^
65e90dba ^
447d19aa ^

65e90dba ^
d4892b29 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65