diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-02-05 04:05:26 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-05 13:05:26 +0100 |
commit | 2b30998159987dc0bd93e4b88421743dac8f76d6 (patch) | |
tree | 479259e62c2bb81518ce708be8ef9eb75d97541f /doc/intern.rst | |
parent | 824f39b32e04e31514aade50da38516b8fadac12 (diff) | |
download | Nim-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.rst | 4 |
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. |