diff options
author | Simon Ruderich <simon@ruderich.org> | 2016-09-15 04:24:14 +0200 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2016-09-15 11:43:58 +0200 |
commit | d255bf498c912779d599fb8ee73f587370f2176c (patch) | |
tree | 3828369ceb550a94bb7bf5b8fb9cd81bbcaec37a | |
parent | e28bed3d84595ea427cd80c2b4411392d4cc8c1e (diff) | |
download | Nim-d255bf498c912779d599fb8ee73f587370f2176c.tar.gz |
system: shl: remove superfluous spaces in documentation
-rw-r--r-- | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index d5c859c48..2eda63163 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -891,8 +891,8 @@ proc `shl` *(x, y: int64): int64 {.magic: "ShlI", noSideEffect.} ## computes the `shift left` operation of `x` and `y`. ## ## .. code-block:: Nim - ## 1'i32 shl 4 == 0x0000_0010 - ## 1'i64 shl 4 == 0x0000_0000_0000_0010 + ## 1'i32 shl 4 == 0x0000_0010 + ## 1'i64 shl 4 == 0x0000_0000_0000_0010 proc `and` *(x, y: int): int {.magic: "BitandI", noSideEffect.} proc `and` *(x, y: int8): int8 {.magic: "BitandI", noSideEffect.} |