feat: help for misspelled pipes is now shown to the user.

This commit is contained in:
Spencer Brower
2026-07-31 09:14:34 -04:00
parent 49d08c3129
commit 10be1b92c4
4 changed files with 31 additions and 1 deletions
+1 -1
View File
@@ -326,5 +326,5 @@ format_render_error :: proc(err: Error, tmpl: Template, colorize: bool = false)
if path == "" {
path = "<input>"
}
return format_error(path, source, b.pos, b.msg, colorize = colorize, span = b.span)
return format_error(path, source, b.pos, b.msg, hint = b.hint, colorize = colorize, span = b.span)
}