File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -945,12 +945,13 @@ pub trait Read {
945
945
}
946
946
}
947
947
948
- /// Convenience function for [` Read::read_to_string `].
948
+ /// Read all bytes from a [reader][ Read] into a new [`String `].
949
949
///
950
- /// This avoids having to create a variable first and it provides more type safety
951
- /// since you can only get the buffer out if there were no errors. (If you use
952
- /// [`Read::read_to_string`] you have to remember to check whether the read succeeded
953
- /// because otherwise your buffer will be empty.)
950
+ /// This is a convenience function for [`Read::read_to_string`]. Using this
951
+ /// function avoids having to create a variable first and provides more type
952
+ /// safety since you can only get the buffer out if there were no errors. (If you
953
+ /// use [`Read::read_to_string`] you have to remember to check whether the read
954
+ /// succeeded because otherwise your buffer will be empty.)
954
955
///
955
956
/// # Examples
956
957
///
You can’t perform that action at this time.
0 commit comments