diff options
author | Tomohiro <gpuppur@gmail.com> | 2020-01-15 03:51:58 +0900 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-01-14 19:51:58 +0100 |
commit | d31e32743fa3ff7d157632909ae220cc0d34e841 (patch) | |
tree | 9af66e644e66717d61280de8229af2e303cf4942 /doc | |
parent | 675ca997fba448c2eb096f4bb12ba97125d79bcd (diff) | |
download | Nim-d31e32743fa3ff7d157632909ae220cc0d34e841.tar.gz |
Fix typo in doc/destructors.rst (#13148)
Diffstat (limited to 'doc')
-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 5877b53c3..1ca51ddf1 100644 --- a/doc/destructors.rst +++ b/doc/destructors.rst @@ -199,7 +199,7 @@ objects inside ``=`` and ``=sink`` is a strong indicator to treat ``system.swap`` as a builtin primitive of its own that simply swaps every field in the involved objects via ``copyMem`` or a comparable mechanism. In other words, ``swap(a, b)`` is **not** implemented -as ``let tmp = move(a); b = move(a); a = move(tmp)``. +as ``let tmp = move(b); b = move(a); a = move(tmp)``. This has further consequences: |