diff options
author | Zahary Karadjov <zahary@gmail.com> | 2017-03-18 02:01:52 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2017-04-06 00:46:18 +0300 |
commit | 02243410fd7ddb157cca2903b14b4897da865730 (patch) | |
tree | a7a0c918e25bf7d4d8d148ee00f271d7aa343a8e /doc/manual | |
parent | 6edb07091dafd4f0214c4aa2df8fc862d03e0a99 (diff) | |
download | Nim-02243410fd7ddb157cca2903b14b4897da865730.tar.gz |
News items for previous commit
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/stmts.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index fa1cac8e1..5668b8cc2 100644 --- a/doc/manual/stmts.txt +++ b/doc/manual/stmts.txt @@ -130,9 +130,9 @@ If a proc is annotated with the ``noinit`` pragma this refers to its implicit The implicit initialization can be also prevented by the `requiresInit`:idx: -type pragma. The compiler requires an explicit initialization then. However -it does a `control flow analysis`:idx: to prove the variable has been -initialized and does not rely on syntactic properties: +type pragma. The compiler requires an explicit initialization for the object +and all of its fields. However it does a `control flow analysis`:idx: to prove +the variable has been initialized and does not rely on syntactic properties: .. code-block:: nim type |