summaryrefslogtreecommitdiff
path: root/src/eval/mod.rs
diff options
context:
space:
mode:
authorMarek Barvíř <barvirm@gmail.com>2023-03-28 09:38:01 +0200
committerGitHub <noreply@github.com>2023-03-28 09:38:01 +0200
commit213f31c5d71b3a5676ec8cce58204b1ac7f2cdea (patch)
treebb0730bbc768f80eb3995b3a55d12a0f62ab3ee8 /src/eval/mod.rs
parentdfbd3503d9a03215238ade30726651b09d6fab2d (diff)
Fix basic lints (cargo clippy) (#383)
Diffstat (limited to 'src/eval/mod.rs')
-rw-r--r--src/eval/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval/mod.rs b/src/eval/mod.rs
index f19e4305..8790bc18 100644
--- a/src/eval/mod.rs
+++ b/src/eval/mod.rs
@@ -652,7 +652,7 @@ impl Eval for ast::MathIdent {
type Output = Value;
fn eval(&self, vm: &mut Vm) -> SourceResult<Self::Output> {
- Ok(vm.scopes.get_in_math(self).cloned().at(self.span())?)
+ vm.scopes.get_in_math(self).cloned().at(self.span())
}
}
@@ -700,7 +700,7 @@ impl Eval for ast::Ident {
type Output = Value;
fn eval(&self, vm: &mut Vm) -> SourceResult<Self::Output> {
- Ok(vm.scopes.get(self).cloned().at(self.span())?)
+ vm.scopes.get(self).cloned().at(self.span())
}
}