diff options
author | Zahary Karadjov <zahary@gmail.com> | 2014-03-06 23:20:36 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2014-03-06 23:25:04 +0200 |
commit | ee1b0d8c6784c30307bcddc7ab8ace0bba35e853 (patch) | |
tree | b02bc652edbe8b99275c473a9392edb169c04751 /doc/manual.txt | |
parent | 249dd7027302c913513cf577beed83512236fc57 (diff) | |
download | Nim-ee1b0d8c6784c30307bcddc7ab8ace0bba35e853.tar.gz |
fix #587
Diffstat (limited to 'doc/manual.txt')
-rw-r--r-- | doc/manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index f3602dc58..427fa2eb7 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -3441,7 +3441,7 @@ Declarative type classes are written in the following form: c.len is ordinal items(c) is iterator for value in c: - type(value) is T + value.type is T The type class will be matched if: |