summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 0116f78..dd4d947 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,7 +27,7 @@ fn read<T: rustyline::Helper>(rl: &mut Editor<T>) -> Result<String, String> {
return Err(())
}
}
- return Ok(lcount == rcount)
+ Ok(lcount == rcount)
}
let mut loop_count = 0;