From f446c156cd6225473cde147df803582ff7e795b4 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Mon, 26 May 2008 03:52:44 +0000 Subject: [PATCH] Fixed typos. --- .../org/eclipse/cdt/core/dom/ast/IProblemBinding.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java index 92bc509b475..dffabf0f551 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java @@ -40,7 +40,7 @@ public interface IProblemBinding extends IBinding, IScope, IType { public IASTNode getASTNode(); /** - * returns the file name this problem occured in if known. + * returns the file name this problem occurred in if known. */ public String getFileName(); @@ -80,7 +80,7 @@ public interface IProblemBinding extends IBinding, IScope, IType { /** * Invalid type provided - * Required attribugtes: A_TYPE_NAME + * Required attributes: A_TYPE_NAME */ public static final int SEMANTIC_INVALID_TYPE = 0x005; @@ -115,7 +115,7 @@ public interface IProblemBinding extends IBinding, IScope, IType { public static final int SEMANTIC_INVALID_REDEFINITION = 0x00B; /** - * invalid redeclaration of the name + * invalid re-declaration of the name */ public static final int SEMANTIC_INVALID_REDECLARATION = 0x00C; @@ -124,5 +124,4 @@ public interface IProblemBinding extends IBinding, IScope, IType { public static final int SEMANTIC_RECURSION_IN_LOOKUP = 0x00E; public static final int LAST_PROBLEM = SEMANTIC_RECURSION_IN_LOOKUP; - }