diff options
author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-11-16 23:30:08 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 22:30:08 +0800 |
commit | cd84cd45ea5bc1de67dd28dab906ad6c16e7b092 (patch) | |
tree | 6e9474ee2131d7f75ac3a3ac51b882b3deb7c0e8 /doc | |
parent | 3680200df4e0b7a434f5e3c3cee20a228383cd32 (diff) | |
download | Nim-cd84cd45ea5bc1de67dd28dab906ad6c16e7b092.tar.gz |
doc: update manual_experimental.md (#22949)
sematics -> semantics
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual_experimental.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual_experimental.md b/doc/manual_experimental.md index 071668aa1..44043b18b 100644 --- a/doc/manual_experimental.md +++ b/doc/manual_experimental.md @@ -2097,7 +2097,7 @@ for a x86 64 bit machine looks like: This is a memory fetch followed by jump. (An ideal implementation would use the carry flag and a single instruction like ``jc .L1``.) -This overhead might not be desired and depending on the sematics of the routine may not be required +This overhead might not be desired and depending on the semantics of the routine may not be required either. So it can be disabled via a `.quirky` annotation: |