summaryrefslogtreecommitdiff
path: root/src/syntax/ast
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-10-03 18:15:09 +0200
committerLaurenz <laurmaedje@gmail.com>2020-10-03 18:15:09 +0200
commit54e0da59e37c25f5b9f9cd8fbe162184debe521b (patch)
tree699cdb8e05dd2867a185bd2f662764f107efecb0 /src/syntax/ast
parent91d14d2a221f619738e4534c1b4266633ce5789d (diff)
Small documentation fixes 🧾
Diffstat (limited to 'src/syntax/ast')
-rw-r--r--src/syntax/ast/lit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/ast/lit.rs b/src/syntax/ast/lit.rs
index c08dc8cd..3b6441e7 100644
--- a/src/syntax/ast/lit.rs
+++ b/src/syntax/ast/lit.rs
@@ -22,7 +22,7 @@ pub enum Lit {
Length(Length),
/// A percent literal: `50%`.
///
- /// Note: `50%` is represented as `50.0` here, but as `0.5` in the
+ /// _Note_: `50%` is represented as `50.0` here, but as `0.5` in the
/// corresponding [value].
///
/// [value]: ../../eval/enum.Value.html#variant.Relative