Skip to content

Commit

Permalink
Merge pull request rust-num#182 from tshepang/patch-1
Browse files Browse the repository at this point in the history
doc: follow Rust idiom of trailing comma
  • Loading branch information
dtolnay authored Jan 1, 2017
2 parents 7509dae + 912c406 commit 6f0ed74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@
//! LastName: String,
//! Age: u32,
//! Address: Address,
//! PhoneNumbers: Vec<String>
//! PhoneNumbers: Vec<String>,
//! }
//!
//! #[derive(Serialize, Deserialize)]
//! struct Address {
//! Street: String,
//! City: String,
//! Country: String
//! Country: String,
//! }
//! ```
//!
Expand Down

0 comments on commit 6f0ed74

Please sign in to comment.