Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2010-12-13 15:43:36 +0000
committerMichael Rennie2010-12-13 15:43:36 +0000
commiteaa81da95e564d3a6ab443c1e4fdc8ec7fda75e2 (patch)
tree3a07ae59bb8063c8388032fc0101019ce72a3f43 /org.eclipse.core.variables
parent213fff67cef509575e22acfaa6d7575a65ce5aad (diff)
downloadeclipse.platform.debug-eaa81da95e564d3a6ab443c1e4fdc8ec7fda75e2.tar.gz
eclipse.platform.debug-eaa81da95e564d3a6ab443c1e4fdc8ec7fda75e2.tar.xz
eclipse.platform.debug-eaa81da95e564d3a6ab443c1e4fdc8ec7fda75e2.zip
Bug 317975 - Fix for wrong usages of affect* and effect*
Diffstat (limited to 'org.eclipse.core.variables')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java
index 4b25138d0..ba4e1694b 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -12,7 +12,7 @@ package org.eclipse.core.variables;
/**
* A variable with a value that can be set and retrieved. The context in which
- * a value variable is referenced does not effect the value of the variable.
+ * a value variable is referenced does not affect the value of the variable.
* A value variable can be contributed by an extension or created programmatically.
* A contributor may optionally specify an initial value for a variable, or
* provide a delegate that will initialize the variable with a value.

Back to the top