Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPTemplateInstance.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPTemplateInstance.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPTemplateInstance.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPTemplateInstance.java
index 2178952b1f1..382777f5361 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPTemplateInstance.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPTemplateInstance.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* IBM - Initial API and implementation
* Markus Schorn (Wind River Systems)
@@ -17,7 +17,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/**
* This interface represents an instantiation or an explicit specialization of a class or a function template.
* The {@link #isExplicitSpecialization()} method is used to distinguish between the two cases.
- *
+ *
* An instance of a class template will also implement ICPPClassType and similarly a function template
* instance will also implement ICPPFunction (or even ICPPMethod or ICPPConstructor as appropriate).
*
@@ -40,7 +40,7 @@ public interface ICPPTemplateInstance extends ICPPSpecialization {
public ICPPTemplateArgument[] getTemplateArguments();
/**
- * Explicit specializations are modeled as instances of a template.
+ * Explicit specializations are modeled as instances of a template.
* Returns {@code true} if this binding is an explicit specialization.
* @since 5.2
*/

Back to the top