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/06/26 23:22:42 UTC

[freemarker] branch 2.3-gae updated: Fix a tiny typo

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 4337015  Fix a tiny typo
     new 1c3c9e9  Merge pull request #58 from robin850/patch-1
4337015 is described below

commit 43370157b6c0f5f4c6b0fd9ff4aea21d41c8584d
Author: Robin Dupret <ro...@gmail.com>
AuthorDate: Wed Jun 26 09:41:19 2019 +0200

    Fix a tiny typo
---
 src/main/java/freemarker/ext/beans/BeansWrapper.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/freemarker/ext/beans/BeansWrapper.java b/src/main/java/freemarker/ext/beans/BeansWrapper.java
index 7414585..586ee12 100644
--- a/src/main/java/freemarker/ext/beans/BeansWrapper.java
+++ b/src/main/java/freemarker/ext/beans/BeansWrapper.java
@@ -1022,7 +1022,7 @@ public class BeansWrapper implements RichObjectWrapper, WriteProtectable {
      * primitives, primitive wrappers, numbers, dates, sets, lists, maps, and
      * native arrays.
      * @param model the model to unwrap
-     * @param targetClass the class of the unwrapped result; {@code Object.class} of we don't know what the expected type is.
+     * @param targetClass the class of the unwrapped result; {@code Object.class} if we don't know what the expected type is.
      * @return the unwrapped result of the desired class
      * @throws TemplateModelException if an attempted unwrapping fails.
      *