From 0f3b3cbbc7455ba4b21da73d7301bc526d9cb9ab Mon Sep 17 00:00:00 2001 From: David Andlinger Date: Thu, 14 Dec 2023 13:27:22 +0100 Subject: [PATCH] Docs: Fix typo in Qute.java javadoc --- .../qute/core/src/main/java/io/quarkus/qute/Qute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/independent-projects/qute/core/src/main/java/io/quarkus/qute/Qute.java b/independent-projects/qute/core/src/main/java/io/quarkus/qute/Qute.java index cda313656c0d5..712ac19493d64 100644 --- a/independent-projects/qute/core/src/main/java/io/quarkus/qute/Qute.java +++ b/independent-projects/qute/core/src/main/java/io/quarkus/qute/Qute.java @@ -159,7 +159,7 @@ public final static class Fmt { } /** - * Use the template cache, i.e. first attempt to find the parsed template in the cahce and if not found then parse the + * Use the template cache, i.e. first attempt to find the parsed template in the cache and if not found then parse the * template and store the instance in the cache. *

* Note that caching greatly improves the performance of formatting, albeit increases the memory usage.