1
Fork 0

Fix spelling errors in comments.

This commit is contained in:
Joseph Crail 2014-06-08 13:22:49 -04:00
parent 17ba0cf428
commit 45e56eccbe
12 changed files with 17 additions and 17 deletions

View file

@ -102,7 +102,7 @@ local_data_key!(local_stdout: Box<Writer:Send>)
pub fn stdin() -> BufferedReader<StdReader> {
// The default buffer capacity is 64k, but apparently windows doesn't like
// 64k reads on stdin. See #13304 for details, but the idea is that on
// windows we use a slighly smaller buffer that's been seen to be
// windows we use a slightly smaller buffer that's been seen to be
// acceptable.
if cfg!(windows) {
BufferedReader::with_capacity(8 * 1024, stdin_raw())