This commit is contained in:
Adria Navarro 2025-02-11 17:02:04 +01:00
parent cc0233eb04
commit affaf45d4f
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ const helpersToCompletion = (
helpers: Record<string, Helper>,
mode: { name: "javascript" | "handlebars" }
): BindingCompletionOption[] => {
const helperSection = buildSectionHeader("helper", "Helper", "Code", 99)
const helperSection = buildSectionHeader("helper", "Helpers", "Code", 99)
return Object.keys(helpers).flatMap(helperName => {
const helper = helpers[helperName]