You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2019/07/11 19:01:07 UTC

[freemarker] branch 2.3-gae updated: fix very small grammar issue

This is an automated email from the ASF dual-hosted git repository.

ddekany pushed a commit to branch 2.3-gae
in repository https://gitbox.apache.org/repos/asf/freemarker.git


The following commit(s) were added to refs/heads/2.3-gae by this push:
     new f195cfd  fix very small grammar issue
     new f00d8c2  Merge pull request #59 from vocatan/2.3-gae
f195cfd is described below

commit f195cfd18252afbfee66e6be9a9690148079f9ea
Author: Bill Mitchell <bi...@publicrelay.com>
AuthorDate: Wed Jul 10 08:59:54 2019 -0400

    fix very small grammar issue
---
 .../java/freemarker/template/TemplateExceptionHandler.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/freemarker/template/TemplateExceptionHandler.java b/src/main/java/freemarker/template/TemplateExceptionHandler.java
index caf1e79..d1c25e9 100644
--- a/src/main/java/freemarker/template/TemplateExceptionHandler.java
+++ b/src/main/java/freemarker/template/TemplateExceptionHandler.java
@@ -65,8 +65,8 @@ public interface TemplateExceptionHandler {
     };
         
     /**
-     * {@link TemplateExceptionHandler} that simply re-throws the exception; this should be used in most production
-     * systems.
+     * {@link TemplateExceptionHandler} that simply re-throws the exception; this should be used 
+     * in most production systems.
      */
     TemplateExceptionHandler RETHROW_HANDLER = new TemplateExceptionHandler() {
         public void handleTemplateException(TemplateException te, Environment env, Writer out)
@@ -76,8 +76,8 @@ public interface TemplateExceptionHandler {
     };
         
     /**
-     * {@link TemplateExceptionHandler} useful when you developing non-HTML templates. This handler
-     * outputs the stack trace information to the client and then re-throws the exception.
+     * {@link TemplateExceptionHandler} useful when you are developing non-HTML templates. This 
+     * handler outputs the stack trace information to the client and then re-throws the exception.
      */
     TemplateExceptionHandler DEBUG_HANDLER = new TemplateExceptionHandler() {
         public void handleTemplateException(TemplateException te, Environment env, Writer out)
@@ -94,9 +94,9 @@ public interface TemplateExceptionHandler {
     }; 
     
     /**
-     * {@link TemplateExceptionHandler} useful when you developing HTML templates. This handler
-     * outputs the stack trace information to the client, formatting it so that it will be usually well readable
-     * in the browser, and then re-throws the exception.
+     * {@link TemplateExceptionHandler} useful when you are developing HTML templates. This handler
+     * outputs the stack trace information to the client, formatting it so that it will be usually 
+     * well readable in the browser, and then re-throws the exception.
      */
     TemplateExceptionHandler HTML_DEBUG_HANDLER = new TemplateExceptionHandler() {
         public void handleTemplateException(TemplateException te, Environment env, Writer out)