diff options
author | Derek 呆 <116649+derekdai@users.noreply.github.com> | 2021-10-28 15:35:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 09:35:57 +0200 |
commit | cd2b093d07303aa7bfcb4a007281f56de3755110 (patch) | |
tree | 0182757270e3001b58d4aef0b074fae1d02f87ee | |
parent | ee65767d44cca79ce2677564151be69a60f6a94d (diff) | |
download | Nim-cd2b093d07303aa7bfcb4a007281f56de3755110.tar.gz |
fix a tiny code snippet formatting issue in `doc/constructors.rst`, again (#19065)
-rw-r--r-- | doc/destructors.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/destructors.rst b/doc/destructors.rst index b4575b2e2..6e4509666 100644 --- a/doc/destructors.rst +++ b/doc/destructors.rst @@ -653,7 +653,7 @@ The ability to override a hook leads to a phase ordering problem: discard -The solution is to define ````proc `=destroy`[T](f: var Foo[T])```` before +The solution is to define ``proc `=destroy`[T](f: var Foo[T])`` before it is used. The compiler generates implicit hooks for all types in *strategic places* so that an explicitly provided hook that comes too "late" can be detected reliably. These *strategic places* |