From 2a7e9108dc41a88e1abfc4514805abb34411af17 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Tue, 11 Oct 2016 13:43:38 -0700 Subject: [PATCH] Adjusted Javadocs. Change-Id: I91da69eba36c8ee554eff369d89cb0a9848559b1 --- .../parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPVariable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }