summary refs log tree commit diff stats
path: root/doc/intern.rst
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2019-02-05 04:05:26 -0800
committerAndreas Rumpf <rumpf_a@web.de>2019-02-05 13:05:26 +0100
commit2b30998159987dc0bd93e4b88421743dac8f76d6 (patch)
tree479259e62c2bb81518ce708be8ef9eb75d97541f /doc/intern.rst
parent824f39b32e04e31514aade50da38516b8fadac12 (diff)
downloadNim-2b30998159987dc0bd93e4b88421743dac8f76d6.tar.gz
document that multiple `yield` in inline iterator cause code bloat (#10553)
* document that multiple `yield` in inline iterator cause code duplication
* doc: rule `Start types with a capital T` was deprecated
Diffstat (limited to 'doc/intern.rst')
-rw-r--r--doc/intern.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/intern.rst b/doc/intern.rst
index b71ad592f..8e0df8fd3 100644
--- a/doc/intern.rst
+++ b/doc/intern.rst
@@ -67,8 +67,8 @@ Coding Guidelines
 * Max line length is 80 characters.
 * Provide spaces around binary operators if that enhances readability.
 * Use a space after a colon, but not before it.
-* Start types with a capital ``T``, unless they are pointers/references which
-  start with ``P``.
+* [deprecated] Start types with a capital ``T``, unless they are
+  pointers/references which start with ``P``.
 
 See also the `API naming design <apis.html>`_ document.