From bb4d6957561be43175f3beb50f36cebca4c10c54 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 5 Jan 2011 02:04:23 +0000 Subject: [PATCH] Adjusted comment. --- .../org/eclipse/cdt/internal/corext/util/CModelUtil.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/util/CModelUtil.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/util/CModelUtil.java index 5c6215bbb72..cf72713696e 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/util/CModelUtil.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/util/CModelUtil.java @@ -28,9 +28,9 @@ import org.eclipse.cdt.internal.ui.util.EditorUtility; public class CModelUtil { /** - * Returns the working copy CU of the given CU. If the CU is already a - * working copy or the CU has no working copy the input CU is returned. - */ + * Returns the working copy TU of the given TU. If the TU is already a + * working copy or the TU has no working copy the input TU is returned. + */ public static ITranslationUnit toWorkingCopy(ITranslationUnit unit) { if (!unit.isWorkingCopy()) { ITranslationUnit workingCopy= EditorUtility.getWorkingCopy(unit);