Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/modules/IHelpContextIdProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/modules/IHelpContextIdProvider.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/modules/IHelpContextIdProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/modules/IHelpContextIdProvider.java
index 4575073f0..48c093904 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/modules/IHelpContextIdProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/modules/IHelpContextIdProvider.java
@@ -14,12 +14,12 @@ package org.eclipse.debug.internal.ui.views.modules;
/**
- * A help context id provider allows clients to customize F1 help content from a
+ * A help context id provider allows clients to customize F1 help content from a
* debug view. When the view input is changed, the view asks the input for
* an adapter for IHelpContexIdProvider. If a provider is returned, the provider
* will be consulted to replace the default context help id for a given control. If a provider
* is not returned, then the view will use the default help context id.
- *
+ *
* This is provided until Bug 216834 is fixed.
*
*/
@@ -31,5 +31,5 @@ public interface IHelpContextIdProvider {
* @return the help context id that should be used in place of the given help context id
* or <code>null</code> if default is to be used
*/
- public String getHelpContextId(String helpId);
+ public String getHelpContextId(String helpId);
}

Back to the top