diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IContributedModelBuilder.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IContributedModelBuilder.java index fdf8fe0e902..1ee55b5fb00 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IContributedModelBuilder.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IContributedModelBuilder.java @@ -19,7 +19,7 @@ package org.eclipse.cdt.core.model; * constructs are contained in it, and on what line(s) the definition occurs). * * The translation unit to parse and the initial element map are given to - * IAdditionalLanguage#createModelBuilder, which will presumably + * {@link ILanguage#createModelBuilder}, which will presumably * pass that information on to the model builder constructor. * * @author Jeff Overbey @@ -29,7 +29,7 @@ public interface IContributedModelBuilder { * Callback used when a TranslationUnit needs to be parsed. * * The translation unit to parse is given to - * ILanguage#createModelBuilder, which will presumably + * {@link ILanguage#createModelBuilder}, which will presumably * pass it on to the model builder constructor. */ public abstract void parse(boolean quickParseMode) throws Exception;