summaryrefslogtreecommitdiff
path: root/src/model/dict.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/dict.rs')
-rw-r--r--src/model/dict.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/dict.rs b/src/model/dict.rs
index 270c2c9c..1c299795 100644
--- a/src/model/dict.rs
+++ b/src/model/dict.rs
@@ -104,7 +104,7 @@ impl Dict {
self.0.values().cloned().collect()
}
- /// Transform each pair in the array with a function.
+ /// Transform each pair in the dictionary with a function.
pub fn map(&self, vm: &Vm, f: Spanned<Func>) -> SourceResult<Array> {
self.iter()
.map(|(key, value)| {