summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRony Batista <rony.batista29@gmail.com>2015-06-10 03:04:41 -0400
committerRony Batista <rony.batista29@gmail.com>2015-06-10 03:04:41 -0400
commit814c2882a5c27ac40781bc20d6978708848784eb (patch)
tree2d3abd77ddbcb2dd7a5183b5bfa122cbe2ed68f3
parent095adeaabace2f5d787396c3043205503102722f (diff)
downloadcoreclr-814c2882a5c27ac40781bc20d6978708848784eb.tar.gz
coreclr-814c2882a5c27ac40781bc20d6978708848784eb.tar.bz2
coreclr-814c2882a5c27ac40781bc20d6978708848784eb.zip
fixed typo in BufferedStream comments
-rw-r--r--src/mscorlib/src/System/IO/BufferedStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/IO/BufferedStream.cs b/src/mscorlib/src/System/IO/BufferedStream.cs
index ab6e8a5b34..6887540612 100644
--- a/src/mscorlib/src/System/IO/BufferedStream.cs
+++ b/src/mscorlib/src/System/IO/BufferedStream.cs
@@ -859,7 +859,7 @@ public sealed class BufferedStream : Stream {
// guaranteed to reduce the number of writes, we prefer it.
// We pick a simple strategy that makes degenerate cases rare if our assumptions are right.
//
- // For ever write, we use a simple heuristic (below) to decide whether to use the buffer.
+ // For every write, we use a simple heuristic (below) to decide whether to use the buffer.
// The heuristic has the desirable property (*) that if the specified user data can fit into the currently available
// buffer space without filling it up completely, the heuristic will always tell us to use the buffer. It will also
// tell us to use the buffer in cases where the current write would fill the buffer, but the remaining data is small