Corrected typo

"workd" corrected to "world"
This commit is contained in:
Mathieu David 2015-05-29 00:43:39 +02:00
parent efebe45cc0
commit 15aeea5477

View File

@ -285,7 +285,7 @@ fn bar<T, K>(x: T, y: K) where T: Clone, K: Clone + Debug {
fn main() {
foo("Hello", "world");
bar("Hello", "workd");
bar("Hello", "world");
}
```