From b5cea453aa1f30ca0da0c443db50db5678a631c6 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Thu, 11 Oct 2018 09:42:35 -0600 Subject: [PATCH] fix typo in Value::as_u64 docs --- src/value/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/value/mod.rs b/src/value/mod.rs index 1650877e..fd0540f2 100644 --- a/src/value/mod.rs +++ b/src/value/mod.rs @@ -379,7 +379,7 @@ impl Value { self.as_u128().is_some() } - /// If the `Value` is an integer, represent it as i64 if possible. Returns + /// If the `Value` is an integer, represent it as u64 if possible. Returns /// None otherwise. /// /// ```rust