Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #361 - rap2hpoutre:patch-1, r=BurntSushi
Fix example in documentation see #359 I choose to write: ```rust assert_eq!("2010".to_string(), caps["year"]); ``` But I could have choose: ```rust assert_eq!("2010", &caps["year"]); ``` Not sure which one is the best (maybe none of them)
- Loading branch information