From ce76143abec24b561113a2ae59749abba73f214f Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 22 Apr 2011 02:03:07 +0000 Subject: [PATCH] Cosmetics. --- .../src/org/eclipse/cdt/internal/ui/text/CWordIterator.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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;