diff --git a/ccm-core/src/com/arsdigita/bebop/Page.java b/ccm-core/src/com/arsdigita/bebop/Page.java
index 111c67742..eb7e26909 100755
--- a/ccm-core/src/com/arsdigita/bebop/Page.java
+++ b/ccm-core/src/com/arsdigita/bebop/Page.java
@@ -165,38 +165,38 @@ public class Page extends SimpleComponent implements Container {
*/
private boolean m_finished = false;
/**
- * indicates whether pageState.stateAsURL() should exportUsers the entire state for this page, or
- * whether it should only exportUsers the control event as a URL and use the HttpSession for the rest
+ * indicates whether pageState.stateAsURL() should export the entire state for this page, or
+ * whether it should only export the control event as a URL and use the HttpSession for the rest
* of the page state.
*/
private boolean m_useHttpSession = false;
/**
- * Returns true if this page should exportUsers state through the HttpSession instead of
+ * Returns true if this page should export state through the HttpSession instead of
* the URL query string.
*
- * If this returns true, then PageState.stateAsURL() will only exportUsers the control
+ * If this returns true, then PageState.stateAsURL() will only export the control
* event as a URL query string. If this returns false, then stateAsURL() will
- * exportUsers the entire page state.
+ * export the entire page state.
*
* @see PageState#stateAsURL
*
- * @return true if this page should exportUsers state through the HttpSession;
- * false if it should exportUsers using the URL query string.
+ * @return true if this page should export state through the HttpSession;
+ * false if it should export using the URL query string.
*/
public boolean isUsingHttpSession() {
return m_useHttpSession;
}
/**
- * Indicates to this page whether it should exportUsers its entire state to subsequent requests
+ * Indicates to this page whether it should export its entire state to subsequent requests
* through the URL query string, or if it should use the HttpSession instead and only use the
* URL query string for the control event.
*
* @see PageState#stateAsURL
*
- * @param b true if PageState.stateAsURL() will exportUsers only the control event as a
- * URL query string. false if stateAsURL() will exportUsers the entire page
+ * @param b true if PageState.stateAsURL() will export only the control event as a
+ * URL query string. false if stateAsURL() will export the entire page
* state.
*/
public void setUsingHttpSession(boolean b) {
@@ -585,7 +585,7 @@ public class Page extends SimpleComponent implements Container {
* @pre state != null
*/
public void generateXML(PageState state, Document parent) {
- // always exportUsers page state as HTTP session
+ // always export page state as HTTP session
if (m_useHttpSession) {
state.stateAsHttpSession();
}