From e24a9723e83dfd5a541946ec636c91c7918c4d18 Mon Sep 17 00:00:00 2001 From: Joosep Sisas Date: Mon, 31 Mar 2025 13:32:53 +0300 Subject: [PATCH] Fixed a typo --- .../src/main/java/com/github/mustachejava/MustacheParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/main/java/com/github/mustachejava/MustacheParser.java b/compiler/src/main/java/com/github/mustachejava/MustacheParser.java index 02ddae15..05a1c6a3 100644 --- a/compiler/src/main/java/com/github/mustachejava/MustacheParser.java +++ b/compiler/src/main/java/com/github/mustachejava/MustacheParser.java @@ -266,7 +266,7 @@ protected Mustache compile(final Reader reader, String tag, final AtomicInteger break; case '=': if (!allowChangingDelimeters) { - throw new MustacheException("Disallowed: changing defaul delimiters"); + throw new MustacheException("Disallowed: changing default delimiters"); } // Change delimiters out = write(mv, out, file, currentLine.intValue(), startOfLine);