Rollup merge of #24038 - frewsxcv:patch-9, r=steveklabnik

This commit is contained in:
Manish Goregaokar 2015-04-04 10:57:26 +05:30
commit 563cf10d37
1 changed files with 2 additions and 6 deletions

View File

@ -46,12 +46,8 @@
//!
//! let version = parse_version(&[1, 2, 3, 4]);
//! match version {
//! Ok(v) => {
//! println!("working with version: {:?}", v);
//! }
//! Err(e) => {
//! println!("error parsing header: {:?}", e);
//! }
//! Ok(v) => println!("working with version: {:?}", v),
//! Err(e) => println!("error parsing header: {:?}", e),
//! }
//! ```
//!