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
commit 16dccc1e2b099f3aab570285cfefe39cd707c6cf Author: ddekany <[email protected]> AuthorDate: Sun Aug 25 21:46:14 2019 +0200 (Fixing some JavaDoc search-and-replace accident) --- src/main/java/freemarker/template/Configuration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/freemarker/template/Configuration.java b/src/main/java/freemarker/template/Configuration.java index a814a73..c169e9a 100644 --- a/src/main/java/freemarker/template/Configuration.java +++ b/src/main/java/freemarker/template/Configuration.java @@ -3109,11 +3109,11 @@ public class Configuration extends Configurable implements Cloneable, ParserConf } /** - * Gets a shared variable. Shared sharedVariables are sharedVariables that are + * Gets a shared variable. Shared shared variables are variables that are * available to all templates. When a template is processed, and an identifier * is undefined in the data model, a shared variable object with the same identifier - * is then looked up in the configuration. There are several predefined sharedVariables - * that are always available through this method, see the FreeMarker manual + * is then looked up in the configuration. There are several predefined shared variables + * that are always available through this method; see the FreeMarker manual * for a comprehensive list of them. * * @see #setSharedVariable(String,Object) @@ -3125,7 +3125,7 @@ public class Configuration extends Configurable implements Cloneable, ParserConf } /** - * Removes all shared sharedVariables, except the predefined ones (compress, html_escape, etc.). + * Removes all shared variables, except the predefined ones (compress, html_escape, etc.). */ public void clearSharedVariables() { sharedVariables.clear();
