Skip to content

Commit

Permalink
Fixes #359
Browse files Browse the repository at this point in the history
  • Loading branch information
rap2hpoutre committed May 10, 2017
1 parent 204e409 commit b9ac569
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ fn main() {
").unwrap();
let caps = re.captures("2010-03-14").unwrap();

assert_eq!("2010", caps["year"]);
assert_eq!("03", caps["month"]);
assert_eq!("14", caps["day"]);
assert_eq!("2010", &caps["year"]);
assert_eq!("03", &caps["month"]);
assert_eq!("14", &caps["day"]);
}
```

Expand Down

0 comments on commit b9ac569

Please sign in to comment.