aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Brisson <claude@renegat.net>2022-06-18 09:03:49 +0200
committerClaude Brisson <claude@renegat.net>2022-06-18 09:03:49 +0200
commit304a539700032d276520da4c1f926fdbcffeddeb (patch)
tree02a29cb7eda5b07e4a5f0ac1e8de829b4a3ae178
parent6b7a2829869e9c9dfa00962f77a285b7e92614c7 (diff)
downloadapache-velocity-engine-304a539700032d276520da4c1f926fdbcffeddeb.tar.gz
Fix a funny typo
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/runtime/directive/Foreach.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/directive/Foreach.java b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/directive/Foreach.java
index dd336eea..991e097a 100644
--- a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/directive/Foreach.java
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/directive/Foreach.java
@@ -224,7 +224,7 @@ public class Foreach extends Directive
// Get the block ast tree which is always the last child ...
Node block = node.jjtGetChild(node.jjtGetNumChildren()-1);
- // ... except if there is an #else claude
+ // ... except if there is an #else clause
Node elseBlock = null;
Node previous = node.jjtGetChild(node.jjtGetNumChildren()-2);
if (previous instanceof ASTBlock)