diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CWordIterator.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CWordIterator.java index 46b04e6d7a5..2758e093248 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CWordIterator.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CWordIterator.java @@ -7,7 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation - * Sergey Prigogin, Google + * Sergey Prigogin (Google) *******************************************************************************/ package org.eclipse.cdt.internal.ui.text; @@ -16,7 +16,6 @@ import java.text.CharacterIterator; import org.eclipse.core.runtime.Assert; - /** * Breaks C text into word starts, also stops at line start and end. No * direction dependency. @@ -26,7 +25,7 @@ import org.eclipse.core.runtime.Assert; public class CWordIterator extends BreakIterator { /** - * The underlying java break iterator. It returns all breaks, including + * The underlying C break iterator. It returns all breaks, including * before and after every whitespace. */ private CBreakIterator fIterator;