From 0404df3fd5791bbeeccad5c8084efe42bdcf8f60 Mon Sep 17 00:00:00 2001 From: Laurentiu Nicola Date: Tue, 16 May 2017 20:56:43 +0300 Subject: [PATCH] Fix typo in docstring --- src/common/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/mod.rs b/src/common/mod.rs index 4629ed95f..9c9fa41ce 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`)