diff --git a/TODO.md b/TODO.md
index 27d6c76..402afc7 100644
--- a/TODO.md
+++ b/TODO.md
@@ -40,7 +40,6 @@
## Internals
- Non-recursive treeify
- Faster factorial function. Maybe use gamma instead?
- - Remove extra calls to `.clone()` in quantity module
- Arbitrary precision float (rug doesn't offer arbitrary exponents)
- Backend-independent colorful printing
diff --git a/src/entry/unix/promptbuffer.rs b/src/entry/unix/promptbuffer.rs
index 511e000..dbc426a 100644
--- a/src/entry/unix/promptbuffer.rs
+++ b/src/entry/unix/promptbuffer.rs
@@ -82,7 +82,7 @@ impl PromptBuffer {
// Prompt methods
pub fn get_contents(&self) -> &String {&self.buffer}
- pub fn enter(&mut self) -> String{
+ pub fn enter(&mut self) -> String {
let s = String::from(self.buffer.trim());
self.buffer.clear();
self.hist_cursor = 0;
diff --git a/src/evaluate/operator.rs b/src/evaluate/operator.rs
index fff2404..2b0798c 100644
--- a/src/evaluate/operator.rs
+++ b/src/evaluate/operator.rs
@@ -38,7 +38,7 @@ pub fn eval_operator(g: &Expression, context: &mut Context) -> Result