summaryrefslogtreecommitdiff
path: root/src/eval/convert.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-11-24 16:12:41 +0100
committerLaurenz <laurmaedje@gmail.com>2020-11-24 16:12:41 +0100
commit761931405c68efe0a35d96524df797dda7155723 (patch)
tree31ac2153dc0e5a5dc4fb4f46f839caed8066542a /src/eval/convert.rs
parentf105663037c44740b5aa02dea72a9b368bc003e0 (diff)
Use newly stabilized intra doc links ↩
Diffstat (limited to 'src/eval/convert.rs')
-rw-r--r--src/eval/convert.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/eval/convert.rs b/src/eval/convert.rs
index 4885b72f..81e42694 100644
--- a/src/eval/convert.rs
+++ b/src/eval/convert.rs
@@ -85,10 +85,7 @@ macro_rules! convert_ident {
};
}
-/// A value type that matches [identifier] and [string] values.
-///
-/// [identifier]: enum.Value.html#variant.Ident
-/// [string]: enum.Value.html#variant.Str
+/// A value type that matches [identifier](Value::Ident) and [string](Value::Str) values.
pub struct StringLike(pub String);
impl From<StringLike> for String {