We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea40aa4 commit f95219fCopy full SHA for f95219f
src/libstd/io/mod.rs
@@ -1340,11 +1340,11 @@ pub trait Seek {
1340
///
1341
/// If you need to obtain the length of *many* streams and you don't care
1342
/// about the seek position afterwards, you can reduce the number of seek
1343
- /// operations by simply calling `seek(SeekFrom::End(0))` and use its
+ /// operations by simply calling `seek(SeekFrom::End(0))` and using its
1344
/// return value (it is also the stream length).
1345
1346
/// Note that length of a stream can change over time (for example, when
1347
- /// data is appended to a file). So calling this method multiply times does
+ /// data is appended to a file). So calling this method multiple times does
1348
/// not necessarily return the same length each time.
1349
1350
0 commit comments