From 8d721fb430c2347f5e618fb0e523df4d5371b00f Mon Sep 17 00:00:00 2001
From: Bad Manners <me@badmanners.xyz>
Date: Tue, 29 Oct 2024 18:31:39 -0300
Subject: [PATCH] Undo autoformatting change

---
 docs/content/splices-toggles.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/content/splices-toggles.md b/docs/content/splices-toggles.md
index 35bb526..a661794 100644
--- a/docs/content/splices-toggles.md
+++ b/docs/content/splices-toggles.md
@@ -160,7 +160,7 @@ html! {
 
 ### Optional attributes with values: `title=[Some("value")]`
 
-Add optional attributes to an element using `attr=[value]` syntax, with _square_ brackets.
+Add optional attributes to an element using `attr=[value]` syntax, with *square* brackets.
 These are only rendered if the value is `Some<T>`, and entirely omitted if the value is `None`.
 
 ```rust