Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-10-24 21:29:08 +0000
committerDarin Swanson2003-10-24 21:29:08 +0000
commit80f9f1b01d5b8e0e4456f15fe130f7398aede225 (patch)
treeea8cabec0243fa67978eb6bba26591b827a11c09 /org.eclipse.core.variables/src
parentc4a35ef674af632d41635fdc6b479899cd00c6d5 (diff)
downloadeclipse.platform.debug-80f9f1b01d5b8e0e4456f15fe130f7398aede225.tar.gz
eclipse.platform.debug-80f9f1b01d5b8e0e4456f15fe130f7398aede225.tar.xz
eclipse.platform.debug-80f9f1b01d5b8e0e4456f15fe130f7398aede225.zip
Javadoc
Diffstat (limited to 'org.eclipse.core.variables/src')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
index 06d2b33f8..541b48899 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
@@ -13,7 +13,7 @@ package org.eclipse.core.variables;
import org.eclipse.core.runtime.CoreException;
/**
- * Regisitry for string variables.
+ * Registry for string variables.
*
* @since 3.0
*/
@@ -21,7 +21,7 @@ public interface IStringVariableManager {
/**
* Simple identifier constant (value <code>"dynamicVariables"</code>) for the
- * context variables extension point.
+ * dynamic variables extension point.
*/
public static final String EXTENSION_POINT_DYNAMIC_VARIABLES = "dynamicVariables"; //$NON-NLS-1$
@@ -87,7 +87,7 @@ public interface IStringVariableManager {
/**
* Recursively resolves and replaces all variable references in the given
* expression with their corresponding values. Allows the client to control
- * whether references to undefeind variables are reported as an error (i.e.
+ * whether references to undefined variables are reported as an error (i.e.
* an exception is thrown).
*
* @param expression expression referencing variables

Back to the top