From ea099fc2a9025c7f74e7772c699be8cdb93e1112 Mon Sep 17 00:00:00 2001 From: James Mitchell Date: Thu, 2 Nov 2006 12:13:48 +0000 Subject: [PATCH] fix a typo git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@470347 13f79535-47bb-0310-9956-ffa450edef68 --- core/src/main/java/org/apache/struts2/components/Bean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/struts2/components/Bean.java b/core/src/main/java/org/apache/struts2/components/Bean.java index b1dcaff90..27b188695 100644 --- a/core/src/main/java/org/apache/struts2/components/Bean.java +++ b/core/src/main/java/org/apache/struts2/components/Bean.java @@ -67,7 +67,7 @@ import com.opensymphony.xwork2.util.ValueStack; * * *

This example instantiates a bean called SimpleCounter and sets the foo property (setFoo('BAR')). The - * SimpleCounter object is then pushed onto the Valuestack, which means that we can called its accessor methods (getFoo()) + * SimpleCounter object is then pushed onto the Valuestack, which means that we can call its accessor methods (getFoo()) * with the Property tag and get their values.

*

*

In the above example, the id has been set to a value of counter. This means that the SimpleCounter class