summary refs log tree commit diff stats
path: root/doc/contributing.rst
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-12-11 23:07:36 +0100
committerAndreas Rumpf <rumpf_a@web.de>2018-12-11 23:07:36 +0100
commitc682671feae3ae6c90416152f84b274cb5aa4a21 (patch)
tree60e1e7fbb482f09b9b703c50a6bb61a359cdfa73 /doc/contributing.rst
parent5dc83d0c8fbc966d35494b3f69bcb5eadaa4f7bc (diff)
downloadNim-c682671feae3ae6c90416152f84b274cb5aa4a21.tar.gz
minor cleanups
Diffstat (limited to 'doc/contributing.rst')
-rw-r--r--doc/contributing.rst11
1 files changed, 1 insertions, 10 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst
index a2c95db74..e3ab697d3 100644
--- a/doc/contributing.rst
+++ b/doc/contributing.rst
@@ -263,17 +263,8 @@ Take advantage of no implicit bool conversion
   doAssert isValid() == true
   doAssert isValid() # preferred
 
-.. _immediately_invoked_lambdas:
-Immediately invoked lambdas (https://en.wikipedia.org/wiki/Immediately-invoked_function_expression)
-
-.. code-block:: nim
-
-  let a = (proc (): auto = getFoo())()
-  let a = block:  # preferred
-    getFoo()
-
 .. _design_for_mcs:
-Design with method call syntax (UFCS in other languages) chaining in mind
+Design with method call syntax chaining in mind
 
 .. code-block:: nim