diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-02-04 21:36:29 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-02-04 21:36:29 +0100 |
| commit | 751812f45141a7b2022d0dba138457f3c21950b0 (patch) | |
| tree | 8f5125f5c475313c460f4a98ec174c11cb0e9c02 /src/syntax/func/values.rs | |
| parent | e63ce52ae0d929506a1fa238477f039d14d53813 (diff) | |
Serialize layouts with serde ðŸ”
Diffstat (limited to 'src/syntax/func/values.rs')
| -rw-r--r-- | src/syntax/func/values.rs | 6 |
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 /// ``` |
