From 452c21a5bbd98ff57015d834c8ffdda2dc9c9e1f Mon Sep 17 00:00:00 2001 From: LuizTrMr Date: Wed, 30 Jul 2025 13:30:13 -0300 Subject: [PATCH] Add a comment missing from the defer if documentation --- content/docs/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/overview.md b/content/docs/overview.md index 6653798e..ad6635ff 100644 --- a/content/docs/overview.md +++ b/content/docs/overview.md @@ -4459,7 +4459,7 @@ defer if cond { } defer { // This is first evaluated, allowing the prior `defer`s to act, as evaluation - happens in reverse declaration order. + // happens in reverse declaration order. cond = true fmt.println("a") // This will print first. }