Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Fix typos in the documentation

Co-Authored-By: LukasKalbertodt <lukas.kalbertodt@gmail.com>
  • Loading branch information
tbu- and LukasKalbertodt committed Mar 17, 2019
1 parent ea40aa4 commit f95219f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/io/mod.rs
Expand Up @@ -1340,11 +1340,11 @@ pub trait Seek {
///
/// If you need to obtain the length of *many* streams and you don't care
/// about the seek position afterwards, you can reduce the number of seek
/// operations by simply calling `seek(SeekFrom::End(0))` and use its
/// operations by simply calling `seek(SeekFrom::End(0))` and using its
/// return value (it is also the stream length).
///
/// Note that length of a stream can change over time (for example, when
/// 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
/// not necessarily return the same length each time.
///
///
Expand Down

0 comments on commit f95219f

Please sign in to comment.