summaryrefslogtreecommitdiffstats
path: root/src/common/mod.rs
diff options
context:
space:
mode:
authorLaurentiu Nicola <lnicola@dend.ro>2017-05-16 20:56:43 +0300
committerPaul Masurel <paul.masurel@gmail.com>2017-05-17 15:50:07 +0900
commit0404df3fd5791bbeeccad5c8084efe42bdcf8f60 (patch)
treef8f117f291ba844677844c8a857fe1148a5bcf36 /src/common/mod.rs
parenta67caee141b8753eb03cae8593d8292be7f3648c (diff)
Fix typo in docstring
Diffstat (limited to 'src/common/mod.rs')
-rw-r--r--src/common/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mod.rs b/src/common/mod.rs
index 4629ed9..9c9fa41 100644
--- a/src/common/mod.rs
+++ b/src/common/mod.rs
@@ -33,7 +33,7 @@ const HIGHEST_BIT: u64 = 1 << 63;
/// Maps `i64` to `u64` so that
/// `-2^63 .. 2^63-1` is mapped
/// to
-/// `0 .. 2^64`
+/// `0 .. 2^64-1`
/// in that order.
///
/// This is more suited than simply casting (`val as u64`)