summaryrefslogtreecommitdiff
path: root/src/model/value.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-11-02 14:48:51 +0100
committerLaurenz <laurmaedje@gmail.com>2022-11-02 14:48:51 +0100
commit56342bd972a13ffe21beaf2b87ab7eb1597704b4 (patch)
tree78f9549141e753dde4a938670c54f3fe8695a058 /src/model/value.rs
parent37ac5d966ebaf97ac79c507028cd5b742b510b89 (diff)
Move layout traits into library
Diffstat (limited to 'src/model/value.rs')
-rw-r--r--src/model/value.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/value.rs b/src/model/value.rs
index 4741401c..d68f42a0 100644
--- a/src/model/value.rs
+++ b/src/model/value.rs
@@ -307,7 +307,7 @@ where
}
fn hash128(&self) -> u128 {
- // Also hash the TypeId since nodes with different types but
+ // Also hash the TypeId since values with different types but
// equal data should be different.
let mut state = SipHasher::new();
self.type_id().hash(&mut state);