From 2834e4a8eae43d4d84ae3071b7b1f3a1a1ba5b22 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 19 Apr 2024 02:47:55 -0500 Subject: [PATCH] cl-ast: Fix typo in format.rs --- cl-ast/src/format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl-ast/src/format.rs b/cl-ast/src/format.rs index fb934da..9bc95d0 100644 --- a/cl-ast/src/format.rs +++ b/cl-ast/src/format.rs @@ -61,7 +61,7 @@ pub mod delimiters { pub open: &'static str, pub close: &'static str, } - /// Delimits with braces decorated with spaces `" {n"`, ..., `"\n}"` + /// Delimits with braces decorated with spaces `" {\n"`, ..., `"\n}"` pub const SPACED_BRACES: Delimiters = Delimiters { open: " {\n", close: "\n}" }; /// Delimits with braces on separate lines `{\n`, ..., `\n}` pub const BRACES: Delimiters = Delimiters { open: "{\n", close: "\n}" };