diff options
author | awr <41453959+awr1@users.noreply.github.com> | 2018-09-12 18:29:01 -0500 |
---|---|---|
committer | awr <41453959+awr1@users.noreply.github.com> | 2018-09-12 18:29:01 -0500 |
commit | e4c4cbc176b62c8e4ee715a25640e40e1533584e (patch) | |
tree | 7896cd49677589abddb75a1500527d1806b84587 /doc | |
parent | 5ee924c711fdb04bef0106ccaeb21c37542c2508 (diff) | |
download | Nim-e4c4cbc176b62c8e4ee715a25640e40e1533584e.tar.gz |
fixed language wrt initialization
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index a7bec649c..4f0530a8a 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -6477,10 +6477,10 @@ Example: foo(10) -Variables can also be reordered as well. Keep in mind, when we initialize (i.e. -combined declaration and assignment in one statement) variables, that entire -statement itself may be reordered. Be wary of what code you execute at the top -level: +Variables can also be reordered as well. Variables that are *initialized* (i.e. +variables that have their declaration and assignment combined in a single +statement) can have their entire initialization statement reordered. Be wary of +what code is executed at the top level: .. code-block:: nim {.experimental: "codeReordering".} |