From c5a479d536eee243846282f3817ebb3916f6bcf4 Mon Sep 17 00:00:00 2001 From: Araq Date: Thu, 28 May 2015 12:44:58 +0200 Subject: [PATCH] minor manual update --- doc/manual/types.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/types.txt b/doc/manual/types.txt index bdf51941da..1461b67b26 100644 --- a/doc/manual/types.txt +++ b/doc/manual/types.txt @@ -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