summaryrefslogtreecommitdiff
path: root/src/syntax/func
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/func')
-rw-r--r--src/syntax/func/values.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax/func/values.rs b/src/syntax/func/values.rs
index d2b54a0b..8e0c24b4 100644
--- a/src/syntax/func/values.rs
+++ b/src/syntax/func/values.rs
@@ -100,9 +100,9 @@ impl From<StringLike> for String {
}
}
-/// A value type that matches the string `"default"` or a value type `V` and
-/// returns `Option::Some(V::Output)` for a value and `Option::None` for
-/// `"default"`.
+/// A value type that matches the identifier `default` or a value type `V` and
+/// implements `Into<Option>` yielding `Option::Some(V)` for a value and
+/// `Option::None` for `default`.
///
/// # Example
/// ```