From 428f7d2d435de55a4dc95bf4a64d2f8eb29415d1 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 30 Nov 2023 12:18:48 -0800 Subject: [PATCH] Fix incorrect Javadoc tag. --- src/main/java/com/samskivert/mustache/Mustache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/samskivert/mustache/Mustache.java b/src/main/java/com/samskivert/mustache/Mustache.java index 59294cf..19bf531 100644 --- a/src/main/java/com/samskivert/mustache/Mustache.java +++ b/src/main/java/com/samskivert/mustache/Mustache.java @@ -228,7 +228,7 @@ public class Mustache { * loader. Note that this does no caching: the caller should cache the loaded template if * they expect to use it multiple times. * @return the compiled template. - * @throw MustacheException if the template could not be loaded (due to I/O exception) or + * @throws MustacheException if the template could not be loaded (due to I/O exception) or * compiled (due to syntax error, etc.). */ public Template loadTemplate (String name) throws MustacheException {