diff options
author | def <dennis@felsin9.de> | 2015-01-16 00:13:22 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-01-16 00:13:22 +0100 |
commit | 9a6fb37c227866f1b93f05bd57b87d86abb56c98 (patch) | |
tree | f66137e4e29c8cd19f80f880244be83843de8f8f /doc/manual/stmts.txt | |
parent | c7934be7e845a01275d4e1ede5515ef5f98cc2c2 (diff) | |
download | Nim-9a6fb37c227866f1b93f05bd57b87d86abb56c98.tar.gz |
Manual renames
Diffstat (limited to 'doc/manual/stmts.txt')
-rw-r--r-- | doc/manual/stmts.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index 6222624e4..5b1284872 100644 --- a/doc/manual/stmts.txt +++ b/doc/manual/stmts.txt @@ -118,11 +118,11 @@ initialized and does not rely on syntactic properties: .. code-block:: nim type - TMyObject = object {.requiresInit.} + MyObject = object {.requiresInit.} proc p() = # the following is valid: - var x: TMyObject + var x: MyObject if someCondition(): x = a() else: |