Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2006-02-24 23:31:17 +0000
committerDarin Swanson2006-02-24 23:31:17 +0000
commit3e5bcab4af0494972e91b46f7e6cb3d087623ca1 (patch)
tree5c64155b6b5c2a61e2dc6769fe7e2284bf7276bd /org.eclipse.core.variables/src/org
parent855e9aa38b2b77bdcce1c445b9bd61d799e4bb36 (diff)
downloadeclipse.platform.debug-3e5bcab4af0494972e91b46f7e6cb3d087623ca1.tar.gz
eclipse.platform.debug-3e5bcab4af0494972e91b46f7e6cb3d087623ca1.tar.xz
eclipse.platform.debug-3e5bcab4af0494972e91b46f7e6cb3d087623ca1.zip
javadoc spelling
Diffstat (limited to 'org.eclipse.core.variables/src/org')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringVariableManager.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringVariableManager.java b/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringVariableManager.java
index 8d4dd3891..5b7b0c145 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringVariableManager.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/internal/variables/StringVariableManager.java
@@ -68,7 +68,7 @@ public class StringVariableManager implements IStringVariableManager, IPropertyC
private Map fDynamicVariables;
/**
- * Value varialbes - maps variable names to variables.
+ * Value variables - maps variable names to variables.
*/
private Map fValueVariables;
@@ -228,7 +228,7 @@ public class StringVariableManager implements IStringVariableManager, IPropertyC
}
/**
- * Loads any persisted value varialbes from the preference store.
+ * Loads any persisted value variables from the preference store.
*/
private void loadPersistedValueVariables() {
String variablesString= VariablesPlugin.getDefault().getPluginPreferences().getString(PREF_VALUE_VARIABLES);
@@ -289,7 +289,7 @@ public class StringVariableManager implements IStringVariableManager, IPropertyC
/**
* Loads contributed value variables. This is done after the persisted value
- * varaibles are restored. Any contributed variables with the same name are
+ * variables are restored. Any contributed variables with the same name are
* merged with existing persisted values.
*/
private void loadContributedValueVariables() {

Back to the top