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

View File

@ -1247,7 +1247,7 @@ pub trait Iterator {
/// 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:
///
/// ```