diff options
| author | Michael Goulet <michael@errs.io> | 2023-07-06 20:11:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-06 20:11:38 -0700 |
| commit | 75febc6ed65c50f949264d7fa3be7be89fee0407 (patch) | |
| tree | 7f759808efa4f0da437635a1817e745970c99084 /library/std/src/io/buffered/bufreader.rs | |
| parent | 3aa456192381cb072da69991d67b19651a81a104 (diff) | |
| parent | 5488a64654d34530ecc3c512c8b87361faea137f (diff) | |
| download | rust-75febc6ed65c50f949264d7fa3be7be89fee0407.tar.gz rust-75febc6ed65c50f949264d7fa3be7be89fee0407.zip | |
Rollup merge of #112008 - intruder-kat:master, r=Nilstrieb
Fix incorrect documented default bufsize in bufreader/writer
Diffstat (limited to 'library/std/src/io/buffered/bufreader.rs')
| -rw-r--r-- | library/std/src/io/buffered/bufreader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/buffered/bufreader.rs b/library/std/src/io/buffered/bufreader.rs index a66e6ccf673..7097dfef88d 100644 --- a/library/std/src/io/buffered/bufreader.rs +++ b/library/std/src/io/buffered/bufreader.rs @@ -53,7 +53,7 @@ pub struct BufReader<R: ?Sized> { } impl<R: Read> BufReader<R> { - /// Creates a new `BufReader<R>` with a default buffer capacity. The default is currently 8 KB, + /// Creates a new `BufReader<R>` with a default buffer capacity. The default is currently 8 KiB, /// but may change in the future. /// /// # Examples |
