diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPVariable.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPVariable.java index 9ddc2198010..93ab00aafb2 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPVariable.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPVariable.java @@ -19,12 +19,12 @@ import org.eclipse.cdt.core.dom.ast.IVariable; */ public interface ICPPVariable extends IVariable, ICPPBinding { /** - * does this variable have the mutable storage class specifier + * Checks whether this variable has the mutable storage class specifier. */ public boolean isMutable(); /** - * Returns whether this variable is declared as extern "C". + * Checks whether this variable is declared as extern "C". */ public boolean isExternC(); }