summaryrefslogtreecommitdiff
path: root/src/eval/value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval/value.rs')
-rw-r--r--src/eval/value.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/value.rs b/src/eval/value.rs
index ce9c4e0e..bf1dd18a 100644
--- a/src/eval/value.rs
+++ b/src/eval/value.rs
@@ -250,7 +250,7 @@ impl Hash for Value {
pub struct Dynamic(Arc<dyn Bounds>);
impl Dynamic {
- /// Create a new instance from any value that satisifies the required bounds.
+ /// Create a new instance from any value that satisfies the required bounds.
pub fn new<T>(any: T) -> Self
where
T: Type + Debug + PartialEq + Hash + Sync + Send + 'static,