You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
0 commit comments