Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-06-01 15:15:38 +0000
committerDarin Wright2006-06-01 15:15:38 +0000
commitca6177dbdf25eaab67fe7b86a56d9f8f465c8ca7 (patch)
tree858bf71f118909f96b05e821cb16729105e9b17a
parentd4456714cac8264bad53c0a9a053ce4169eec284 (diff)
downloadeclipse.platform.debug-ca6177dbdf25eaab67fe7b86a56d9f8f465c8ca7.tar.gz
eclipse.platform.debug-ca6177dbdf25eaab67fe7b86a56d9f8f465c8ca7.tar.xz
eclipse.platform.debug-ca6177dbdf25eaab67fe7b86a56d9f8f465c8ca7.zip
doc - spelling errors
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/VariableContentAdapter.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/VariableContentAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/VariableContentAdapter.java
index ff7a7a0ee..e66053e24 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/VariableContentAdapter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/VariableContentAdapter.java
@@ -46,13 +46,13 @@ public class VariableContentAdapter extends AsynchronousContentAdapter {
}
/**
- * Returns children for the given value, creating array paritions if
+ * Returns children for the given value, creating array partitions if
* required
*
* @param parent expression or variable containing the given value
* @param value the value to retrieve children for
* @param context the context in which children have been requested
- * @return children for the given value, creating array paritions if
+ * @return children for the given value, creating array partitions if
* required
* @throws CoreException
*/
@@ -168,10 +168,10 @@ public class VariableContentAdapter extends AsynchronousContentAdapter {
}
/**
- * Return wether to show compute a logical structure or a raw structure
+ * Return whether to show compute a logical structure or a raw structure
* in the specified context
*
- * @return wether to show compute a logical structure or a raw structure
+ * @return whether to show compute a logical structure or a raw structure
* in the specified context
*/
protected boolean isShowLogicalStructure(IPresentationContext context) {
@@ -190,7 +190,7 @@ public class VariableContentAdapter extends AsynchronousContentAdapter {
* of an indexed collection
*/
protected int getArrayPartitionSize() {
- // TODO: should fix this with a user pref
+ // TODO: should fix this with a user preference
return 100;
}

Back to the top