From 4f80f47e85712e723304cb14aacda9cc7f8ec340 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Mon, 25 Apr 2011 01:01:42 +0000 Subject: [PATCH] Fixed typo. --- .../parser/org/eclipse/cdt/core/dom/ast/IASTDeclarator.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTDeclarator.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTDeclarator.java index c8784a3af30..cc055191b56 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTDeclarator.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTDeclarator.java @@ -68,8 +68,8 @@ public interface IASTDeclarator extends IASTNode, IASTNameOwner { public void addPointerOperator(IASTPointerOperator operator); /** - * If the declarator is nested in parenthesis, this returns the declarator - * as found in those parenethesis. + * If the declarator is nested in parentheses, this returns the declarator + * as found in those parentheses. * * @return the nested declarator or null */ @@ -117,5 +117,4 @@ public interface IASTDeclarator extends IASTNode, IASTNameOwner { * @since 5.3 */ public IASTDeclarator copy(CopyStyle style); - }