Skip to content
Snippets Groups Projects
Unverified Commit 865c0578 authored by Jeremy Soller's avatar Jeremy Soller Committed by GitHub
Browse files

Merge pull request #85 from jamessral/fix-argument-parenthesis

Remove extra parenthesis around function argument to compile
parents f98a9423 7d865763
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ impl Editor {
let ch = self.get_char();
if let Some(o) = self.next_ocur(ch, n.d()) {
Some((to_signed_pos((o, y))))
Some(to_signed_pos((o, y)))
} else {
None
}
......@@ -87,7 +87,7 @@ impl Editor {
let ch = self.get_char();
if let Some(o) = self.previous_ocur(ch, n.d()) {
Some((to_signed_pos((o, y))))
Some(to_signed_pos((o, y)))
} else {
None
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment