From bcd6e36e57add91fcf4238fda19c3beb767a0964 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Sat, 23 Aug 2025 15:29:03 +0200 Subject: [PATCH] Fix tip breaking content layout in variables.md Correctly close `:::` tip block. As mentioned in #2016. Using a newline after the numbered list makes sure the lefthook npx prettier run does not reintroduce the Markdown formatting issue of the `:::` tip not being closed. --- book/variables.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/book/variables.md b/book/variables.md index 5a88f269ed0..42bea23a52d 100644 --- a/book/variables.md +++ b/book/variables.md @@ -63,7 +63,8 @@ There are a couple of assignment operators used with mutable variables 1. `+=`, `-=`, `*=` and `/=` are only valid in the contexts where their root operations are expected to work. For example, `+=` uses addition, so it can not be used for contexts where addition would normally fail 2. `++=` requires that either the variable **or** the argument is a list. - ::: + +::: #### More on Mutability