aboutsummaryrefslogtreecommitdiffstats
path: root/src/rst.pest
diff options
context:
space:
mode:
Diffstat (limited to 'src/rst.pest')
-rw-r--r--src/rst.pest2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rst.pest b/src/rst.pest
index 3d1d3d4..6608203 100644
--- a/src/rst.pest
+++ b/src/rst.pest
@@ -37,7 +37,7 @@ hanging_block = _{
// | plain
}
-// Note. A block type
+// Admonition. A block type
admonition = { ".." ~ PUSH(" "+) ~ admonition_type ~ "::" ~ (blank_line | line) ~ blank_line* ~ admonition_body? ~ DROP }
admonition_type = { "attention" | "caution" | "danger" | "error" | "hint" | "important" | "note" | "tip" | "warning" | "admonition" }