summaryrefslogtreecommitdiff
path: root/src/repl.rs
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2019-01-15 13:06:25 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-01-15 07:06:25 -0500
commitd8adeb41de2daab15a0d30eeead9796fa58bfbc3 (patch)
tree030670147587a2ebc04506a3dcad7bd34bce1016 /src/repl.rs
parent48ca06e420d08d15ac6653ab73c6249eb99428a7 (diff)
Clippy fixes (also fixes build with nightly) (#1527)
Diffstat (limited to 'src/repl.rs')
-rw-r--r--src/repl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repl.rs b/src/repl.rs
index 83e228b51..107d8a187 100644
--- a/src/repl.rs
+++ b/src/repl.rs
@@ -71,7 +71,7 @@ impl Repl {
repl
}
- fn load_history(&mut self) -> () {
+ fn load_history(&mut self) {
debug!("Loading REPL history: {:?}", self.history_file);
self
.editor