From 2029799d17ff368fefa761334ad76ea7474412b3 Mon Sep 17 00:00:00 2001 From: benaryorg Date: Sat, 30 May 2015 17:41:09 +0200 Subject: [PATCH] fix documentation in libserialize the object was serialized with an 'i' but the comment stated the print command would output 'j' --- src/libserialize/json.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs index adc4f69334f17..24cc7fe878af4 100644 --- a/src/libserialize/json.rs +++ b/src/libserialize/json.rs @@ -145,7 +145,7 @@ //! val: num.to_json(), //! }).unwrap(); //! println!("data: {}", data); -//! // data: {"uid":1,"dsc":"test","val":"0.0001+12.539j"}; +//! // data: {"uid":1,"dsc":"test","val":"0.0001+12.539i"}; //! } //! ``` //!