Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Dec 23, 2024
1 parent 4a38151 commit 6249ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspace-d/source/workspaced/com/snippets/control_flow.d
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class ControlFlowSnippetProvider : SnippetProvider
Snippet snp;
snp.providerId = typeid(this).name;
snp.id = snp.title = snp.shortcut = "default";
snp.snippet = "case:\n\t$0\n\tbreak;";
snp.snippet = "default:\n\t$0\n\tbreak;";
snp.documentation = "Defines the default case in the current switch-case.\n\nReference: https://dlang.org/spec/statement.html#switch-statement";
snp.resolved = true;
snp.unformatted = true;
Expand Down

0 comments on commit 6249ab0

Please sign in to comment.