summary refs log tree commit diff stats
path: root/doc/manual.rst
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-07-09 15:15:49 +0200
committerGitHub <noreply@github.com>2021-07-09 15:15:49 +0200
commit4ec2f74246158759735149e3dd087f373fd787b2 (patch)
tree1b285703907d2fd192b57847af12f8b8f337ebad /doc/manual.rst
parentae7e7756fea146126ffc5200b2e66bfe2dab4cd4 (diff)
downloadNim-4ec2f74246158759735149e3dd087f373fd787b2.tar.gz
ORC: support for custom =trace procs (#18459)
* ORC: support custom =trace procs (WIP)
* Update tests/arc/tcustomtrace.nim

Co-authored-by: Clyybber <darkmine956@gmail.com>

* =trace is now documented and seems to work
* make test green

Co-authored-by: Clyybber <darkmine956@gmail.com>
Diffstat (limited to 'doc/manual.rst')
-rw-r--r--doc/manual.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/manual.rst b/doc/manual.rst
index 9ddf02009..34781141e 100644
--- a/doc/manual.rst
+++ b/doc/manual.rst
@@ -3840,9 +3840,8 @@ the operator is in scope (including if it is private).
   # will still be called upon exiting scope
   doAssert witness == 3
 
-Type bound operators currently include:
-`=destroy`, `=copy`, `=sink`, `=trace`, `=deepcopy`
-(some of which are still implementation defined and not yet documented).
+Type bound operators are:
+`=destroy`, `=copy`, `=sink`, `=trace`, `=deepcopy`.
 
 For more details on some of those procs, see
 `Lifetime-tracking hooks <destructors.html#lifetimeminustracking-hooks>`_.