Preface 'cares' with 'only'

This commit is contained in:
Ryan Leckey
2017-08-06 03:16:42 -07:00
committed by GitHub
parent dd1df35f87
commit bbdff02f8c
+1 -1
View File
@@ -1247,7 +1247,7 @@ fn by_ref(&mut self) -> &mut Self where Self: Sized { self }
/// assert_eq!(vec![2, 4, 6], doubled);
/// ```
///
/// Because `collect()` cares about what you're collecting into, you can
/// Because `collect()` only cares about what you're collecting into, you can
/// still use a partial type hint, `_`, with the turbofish:
///
/// ```