Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-09-10 21:08:57 +0000
committerMichael Rennie2007-09-10 21:08:57 +0000
commit4f1741c5179373587363a11aaebb95cbfc21fdc1 (patch)
tree4bc780317d32ab6944bf113d8c1030df2f0e0902 /org.eclipse.debug.ui
parent60cf1eb3880eea57cb021a40869e6ddbb64c610c (diff)
downloadeclipse.platform.debug-4f1741c5179373587363a11aaebb95cbfc21fdc1.tar.gz
eclipse.platform.debug-4f1741c5179373587363a11aaebb95cbfc21fdc1.tar.xz
eclipse.platform.debug-4f1741c5179373587363a11aaebb95cbfc21fdc1.zip
spelling
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsViewer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsViewer.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsViewer.java
index 3afbf40ae..97604e2d2 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsViewer.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsViewer.java
@@ -49,17 +49,17 @@ public class BreakpointsViewer extends CheckboxTreeViewer {
/**
* Returns the selected items.
*
- * @return seleted items
+ * @return selected items
*/
public Item[] getSelectedItems() {
return getSelection(getControl());
}
/**
- * Returns the item assocaited with the given element, or <code>null</code>.
+ * Returns the item associated with the given element, or <code>null</code>.
*
* @param element element in breakpoints view
- * @return item assocaited with the given element, or <code>null</code>
+ * @return item associated with the given element, or <code>null</code>
*/
public Widget searchItem(Object element) {
return findItem(element);

Back to the top