From af8e31c4a7b9f6f47f28af2d4402ce146c46be50 Mon Sep 17 00:00:00 2001 From: PEZ Date: Fri, 3 Oct 2025 17:25:15 +0200 Subject: [PATCH] typos --- instructions/clojure.instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instructions/clojure.instructions.md b/instructions/clojure.instructions.md index 1e38718..483c4d3 100644 --- a/instructions/clojure.instructions.md +++ b/instructions/clojure.instructions.md @@ -36,10 +36,10 @@ Docstrings belong immediately after the function name and before the argument ve - Define functions before they are used—prefer ordering over `declare` except when truly necessary. -## Interactive Programming (a.k.a. REPL Drivern Development) +## Interactive Programming (a.k.a. REPL Driven Development) ### Align Data Structure Elements for Bracket Balancing -**Always align multi-line elements vertically in all data structures (vectors, maps, lists, sets, all code). Misalignment causes the bracket balancer to close brackets incorrectly, creating invalid forms. +**Always align multi-line elements vertically in all data structures (vectors, maps, lists, sets, all code). Misalignment causes the bracket balancer to close brackets incorrectly, creating invalid forms.** ```clojure ;; ❌ Wrong - misaligned vector elements