summaryrefslogtreecommitdiff
path: root/src/eval/scope.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-01-03 00:12:09 +0100
committerLaurenz <laurmaedje@gmail.com>2021-01-03 00:12:09 +0100
commitaae67bd572ad86f4c57e364daa51a9dc883b8913 (patch)
tree0aba021e0748ebad2197ea390385ec5f93ccbc6e /src/eval/scope.rs
parent1c40dc42e7bc7b799b77f06d25414aca59a044ba (diff)
Move and rename many things 🚛
Diffstat (limited to 'src/eval/scope.rs')
-rw-r--r--src/eval/scope.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/eval/scope.rs b/src/eval/scope.rs
index c9ce1423..dd7cc1da 100644
--- a/src/eval/scope.rs
+++ b/src/eval/scope.rs
@@ -1,11 +1,9 @@
-//! Mapping from identifiers to functions.
-
use std::collections::HashMap;
use std::fmt::{self, Debug, Formatter};
use super::Value;
-/// A map from identifiers to functions.
+/// A map from identifiers to values.
#[derive(Default, Clone, PartialEq)]
pub struct Scope {
values: HashMap<String, Value>,