From 1b0fae8b183fc2a3ecca8e889222aa7062ca97a4 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sat, 9 Apr 2011 20:58:50 +0000 Subject: [PATCH] Javadoc adjustments. --- .../org/eclipse/cdt/codan/core/cxx/model/ICAstChecker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/ICAstChecker.java b/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/ICAstChecker.java index 5fd92d1c0d0..78a1f28cf9c 100644 --- a/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/ICAstChecker.java +++ b/codan/org.eclipse.cdt.codan.core.cxx/src/org/eclipse/cdt/codan/core/cxx/model/ICAstChecker.java @@ -28,10 +28,10 @@ import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit; */ public interface ICAstChecker extends IChecker { /** - * Run this checker on a given ast. - * Ast locks would be obtained by the framework before calling this method. + * Runs this checker on a given AST. + * AST locks are obtained by the framework before calling this method. * - * @param ast + * @param ast the AST. */ void processAst(IASTTranslationUnit ast); }