Skip to content

Commit 4ee6d1b

Browse files
committed
Add description independent of Read::read_to_string
1 parent 1f9a8a1 commit 4ee6d1b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

library/std/src/io/mod.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -945,12 +945,13 @@ pub trait Read {
945945
}
946946
}
947947

948-
/// Convenience function for [`Read::read_to_string`].
948+
/// Read all bytes from a [reader][Read] into a new [`String`].
949949
///
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.)
954955
///
955956
/// # Examples
956957
///

0 commit comments

Comments
 (0)