Rollup merge of #25865 - azerupi:patch-2, r=alexcrichton

"workd" corrected to "world"
This commit is contained in:
Steve Klabnik 2015-05-29 15:24:46 -04:00
commit c7b1f37c59

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");
}
```