From d1fd92013f76337eda1bbed57612f01b3c31504d Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 7 Oct 2016 19:52:59 -0700 Subject: [PATCH] Fixed a typo. Change-Id: Idac67510d3d898ccbf0a7ec2429512c24c403422 --- .../parser/org/eclipse/cdt/core/dom/ast/IValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IValue.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IValue.java index 94e34a5a19b..7c31aa8621c 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IValue.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IValue.java @@ -60,7 +60,7 @@ public interface IValue { /** * Returns the evaluation object if this value cannot be represented as a single numerical value, or - * {@code null} otherwise. This cam happen if the value is dependent, or it's a composite value. + * {@code null} otherwise. This can happen if the value is dependent, or it's a composite value. * If {@link #numberValue()} returns {@code null}, {@link #getEvaluation()} returns * not {@code null} and vice versa. * @noreference This method is not intended to be referenced by clients.