From 9ade0dd1e28c383f0513611a7bd2a3e0e1cf1434 Mon Sep 17 00:00:00 2001 From: greg Date: Wed, 2 May 2018 01:58:57 -0700 Subject: [PATCH] Kill unnecessary mutable --- rukka/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rukka/src/lib.rs b/rukka/src/lib.rs index cf470a5..6332ed3 100644 --- a/rukka/src/lib.rs +++ b/rukka/src/lib.rs @@ -74,7 +74,7 @@ impl ProgrammingLanguageInterface for Rukka { } fn execute_pipeline(&mut self, input: &str, _eval_options: &EvalOptions) -> FinishedComputation { - let mut output = UnfinishedComputation::default(); + let output = UnfinishedComputation::default(); let sexps = match read(input) { Err(err) => { return output.finish(Err(format!("Error: {}", err)));