diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTAliasDeclaration.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTAliasDeclaration.java
index 7db3e5fdb78..f8ab21dfab8 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTAliasDeclaration.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTAliasDeclaration.java
@@ -17,7 +17,7 @@ import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTNameOwner;
/**
- * This interface represents a C++ alias declaration.
+ * Represents a C++ alias declaration.
* e.g. struct Type {}; using Alias = Type;
* @since 5.5
*
@@ -28,8 +28,7 @@ public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner
public static final ICPPASTAliasDeclaration[] EMPTY_ALIAS_DECLARATION_ARRAY = {};
/**
- * ALIAS_NAME
is the name that is brought into local
- * scope.
+ * ALIAS_NAME
is the name that is brought into the local scope.
*/
public static final ASTNodeProperty ALIAS_NAME = new ASTNodeProperty(
"ICPPASTAliasDeclaration.ALIAS_NAME - Introduced alias name"); //$NON-NLS-1$
@@ -42,28 +41,28 @@ public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner
"ICPPASTAliasDeclaration.TARGET_TYPEID - Pre-existing type ID the new symbol aliases"); //$NON-NLS-1$
/**
- * Get the alias name.
+ * Returns the alias name.
*
* @return IASTName
*/
public IASTName getAlias();
/**
- * Set the alias name.
+ * Sets the alias name.
*
* @param aliasName IASTName
*/
public void setAlias(IASTName aliasName);
/**
- * Get the mapping type id.
+ * Returns the mapping type id.
*
* @return ICPPASTTypeId
*/
public ICPPASTTypeId getMappingTypeId();
/**
- * Set the mapping type id.
+ * Sets the mapping type id.
*
* @param mappingTypeId ICPPASTTypeId
*/
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java
index 1bf161a39d3..4c2d7d6d9e8 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java
@@ -19,7 +19,7 @@ import org.eclipse.cdt.core.dom.ast.ITypedef;
*/
public interface ICPPAliasTemplateInstance extends ITypedef, ICPPBinding {
/**
- * Returns the the alias template specialized by this instance.
+ * Returns the alias template specialized by this instance.
*/
public ICPPAliasTemplate getTemplateDefinition();
}