From fc574b39454aec77cf2c33270566225917c7c823 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Tue, 26 Jul 2022 23:24:50 +0200 Subject: New `Str` type with methods --- src/eval/array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/eval/array.rs') diff --git a/src/eval/array.rs b/src/eval/array.rs index e54e7e19..43261a22 100644 --- a/src/eval/array.rs +++ b/src/eval/array.rs @@ -20,7 +20,7 @@ macro_rules! array { }; } -/// An array of values with clone-on-write value semantics. +/// A reference counted array with value semantics. #[derive(Default, Clone, PartialEq, Hash)] pub struct Array(Arc>); -- cgit v1.2.3