aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathaniel Saxe <NathanielSaxophone@gmail.com>2026-02-03 17:05:05 -0500
committerNathaniel Saxe <NathanielSaxophone@gmail.com>2026-02-03 17:05:05 -0500
commit5c582738aa27ad8a6dd290be0a56ab6c619fd121 (patch)
treee2d10689c3937712a33de650f2dfcb44be2be762
parente09faaa16c35721d37d61625ce14239ac29ba6eb (diff)
sep=''
-rw-r--r--src/server/action_populate_switch_cases.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/action_populate_switch_cases.odin b/src/server/action_populate_switch_cases.odin
index f2255c5..8489979 100644
--- a/src/server/action_populate_switch_cases.odin
+++ b/src/server/action_populate_switch_cases.odin
@@ -160,7 +160,7 @@ create_populate_switch_cases_edit :: proc(
if name in existing_cases_map {continue} //covered by prev loop
fmt.sbprintln(b, indent_for_new_cases, "case ", dot, name, ":", sep = "")
}
- fmt.sbprint(b, indent_for_new_cases, "}")
+ fmt.sbprint(b, indent_for_new_cases, "}", sep = "")
return TextEdit{range = range, newText = strings.to_string(replacement_builder)}, true
}
@(private = "package")