diff options
Diffstat (limited to 'tests/test_take.rs')
-rw-r--r-- | tests/test_take.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_take.rs b/tests/test_take.rs index 93e0c6c..0637569 100644 --- a/tests/test_take.rs +++ b/tests/test_take.rs @@ -5,7 +5,7 @@ use std::io::Cursor; #[test] fn long_take() { - // Tests that take with a size greater than the buffer length will not + // Tests that get a take with a size greater than the buffer length will not // overrun the buffer. Regression test for #138. let buf = Cursor::new(b"hello world").take(100); assert_eq!(11, buf.remaining()); |