summaryrefslogtreecommitdiff
path: root/src/model/value.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-02-17 16:32:48 +0100
committerLaurenz <laurmaedje@gmail.com>2023-02-17 16:32:48 +0100
commit028632a3a10202ee21eaaf7ecf13ca7fe331106e (patch)
treeecba2b74b52b2c94b8ccf63dc8099d8ef608081c /src/model/value.rs
parentdd5f07eb9110cc5e19dcb4441743a323128426fc (diff)
Fix error handling after hashtag
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 b860a3f6..dff27fde 100644
--- a/src/model/value.rs
+++ b/src/model/value.rs
@@ -133,7 +133,7 @@ impl Value {
format_str!("{:?}", self)
}
- /// Attach a span to the value, if possibly.
+ /// Attach a span to the value, if possible.
pub fn spanned(self, span: Span) -> Self {
match self {
Value::Content(v) => Value::Content(v.spanned(span)),