From 161c5d6e264350869d9105cdc53c0b05c8bb3a28 Mon Sep 17 00:00:00 2001 From: Jarred Nicholls Date: Mon, 2 Nov 2015 07:12:07 -0500 Subject: [PATCH] Fix typo in documentation of Value::F64 --- json/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json/src/lib.rs b/json/src/lib.rs index c7880c3b2..3a6d4941d 100644 --- a/json/src/lib.rs +++ b/json/src/lib.rs @@ -12,7 +12,7 @@ //! * `Boolean`: equivalent to rust's `bool` //! * `I64`: equivalent to rust's `i64` //! * `U64`: equivalent to rust's `u64` -//! * `F64`: equivalent to rust's `i64` +//! * `F64`: equivalent to rust's `f64` //! * `String`: equivalent to rust's `String` //! * `Array`: equivalent to rust's `Vec`, but also allowing objects of different types in the //! same array