summaryrefslogtreecommitdiff
path: root/src/eval/scope.rs
diff options
context:
space:
mode:
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>,