Skip to content

Commit

Permalink
fix some nitpicks in the type system
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrh committed Jan 31, 2019
1 parent 09c8adf commit 6eb9f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/integration_tests.rs
Expand Up @@ -1240,7 +1240,7 @@ fn test_empty18() {
}

pub struct SoonErrorReader(&'static[u8], bool);
impl Read for SoonErrorReader {
impl io::Read for SoonErrorReader {
fn read(&mut self, data:&mut [u8]) -> io::Result<usize> {
let first = self.1;
self.1 = false;
Expand Down

0 comments on commit 6eb9f95

Please sign in to comment.