From a28d05b77ccaa8fcdc1aec6ea3441a2c1e67165a Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sun, 12 May 2013 10:46:49 -0700 Subject: [PATCH] Minor Javadoc adjustment. --- .../org/eclipse/cdt/core/dom/ast/IASTTranslationUnit.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTTranslationUnit.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTTranslationUnit.java index 2b4665d6c5b..30652baa00c 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTTranslationUnit.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTTranslationUnit.java @@ -154,8 +154,8 @@ public interface IASTTranslationUnit extends IASTDeclarationListOwner, IFileNomi public IASTNode selectNodeForLocation(String path, int offset, int length); /** - * Returns the macro definitions encountered in parsing this translation unit. The result will not contain - * definitions for built-in macros. + * Returns the macro definitions encountered in parsing this translation unit. The result will + * not contain definitions for built-in macros. *

* In case the information for a header-file is pulled in from the index, * macro definitions contained therein are not returned. @@ -253,7 +253,7 @@ public interface IASTTranslationUnit extends IASTDeclarationListOwner, IFileNomi public IIndex getIndex(); /** - * Return the set of files that have been skipped because they have been part of the index + * Returns the set of files that have been skipped because they have been part of the index * prior to creating this AST, or {@code null} if not available. * Applies only, if AST was created with an index and the option to skip headers found in * the index. @@ -262,7 +262,7 @@ public interface IASTTranslationUnit extends IASTDeclarationListOwner, IFileNomi IIndexFileSet getIndexFileSet(); /** - * Return the set of files in the index that are superseded by this AST, or {@code null} + * Returns the set of files in the index that are superseded by this AST, or {@code null} * if not available. Applies only, if AST was created with an index. * @since 5.3 */