summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSergey Avseyev <sergey.avseyev@gmail.com>2015-06-18 14:04:15 +0300
committerSergey Avseyev <sergey.avseyev@gmail.com>2015-06-18 14:04:15 +0300
commit137c836616f471abdcfafc21376ee5a5f65efc08 (patch)
tree07292acfc47555f94ff8634f1f1a9cd9badd4677
parent273d6ffc16aa56c1be9d1e7df0612105dcb10c77 (diff)
downloadNim-137c836616f471abdcfafc21376ee5a5f65efc08.tar.gz
Fix reST syntax in doc/astspec.txt
-rw-r--r--doc/astspec.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/astspec.txt b/doc/astspec.txt
index 3945293d0..3a67eca7e 100644
--- a/doc/astspec.txt
+++ b/doc/astspec.txt
@@ -1059,7 +1059,7 @@ Nim type                     Corresponding AST
 ``iterator``                 ``nnkIteratorTy``
 ``object``                   ``nnkObjectTy``
 
-Take special care when declaring types as ``proc``s. The behavior is similar
+Take special care when declaring types as ``proc``. The behavior is similar
 to ``Procedure declaration``, below, but does not treat ``nnkGenericParams``.
 Generic parameters are treated in the type, not the ``proc`` itself.
 
@@ -1084,8 +1084,8 @@ AST:
     )
   )
 
-The same syntax applies to ``iterator``s (with ``nnkIteratorTy``), but
-*does not* apply to ``converter``s or ``template``s.
+The same syntax applies to ``iterator`` (with ``nnkIteratorTy``), but
+*does not* apply to ``converter`` or ``template``.
 
 Mixin statement
 ---------------