From 2b19fdf07ebf344e980908a18aa904e7d6648578 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 12 Aug 2004 19:43:22 +0000 Subject: [PATCH] Typos --- .../internal/ui/text/CCompletionContributorDescriptor.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CCompletionContributorDescriptor.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CCompletionContributorDescriptor.java index b6c6032cfb4..08b0eace1ff 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CCompletionContributorDescriptor.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CCompletionContributorDescriptor.java @@ -31,10 +31,7 @@ import org.eclipse.cdt.ui.CUIPlugin; import org.eclipse.cdt.ui.ICCompletionContributor; /** - * @author alain - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + * CCompletionContributorDescriptor */ public class CCompletionContributorDescriptor { private IConfigurationElement fConfigurationElement; @@ -62,7 +59,7 @@ public class CCompletionContributorDescriptor { String id= fConfigurationElement.getAttribute(ID); return new StatusInfo(IStatus.ERROR, "Only one element allowed. Disabling " + id); //$NON-NLS-1$ } - return new StatusInfo(IStatus.OK, "Syntactically correct quick assist/fix processor"); //$NON-NLS-1$ + return new StatusInfo(IStatus.OK, "Syntactically correct completion contributor"); //$NON-NLS-1$ } private boolean matches(ITranslationUnit unit) {