minor manual update

This commit is contained in:
Araq
2015-05-28 12:44:58 +02:00
parent 5824be8e8c
commit c5a479d536

View File

@@ -564,7 +564,7 @@ the ``of`` operator can be used to determine the object's type.
.. code-block:: nim
type
Person {.inheritable.} = object
Person = object of RootObj
name*: string # the * means that `name` is accessible from other modules
age: int # no * means that the field is hidden