summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/fe/idl.ypp
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2019-06-07 11:43:06 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2019-06-07 11:43:06 -0500
commiteb4bf96c72cf2e080201908a93de4e53182fd363 (patch)
tree5f368f9badc2ac64cc1e11b10ebe289973ffc34b /TAO/TAO_IDL/fe/idl.ypp
parenta3cd77e6bf7ae3cba390708676bf9e1c5474238f (diff)
downloadATCD-eb4bf96c72cf2e080201908a93de4e53182fd363.tar.gz
tao_idl: Fix Typo in idl.ypp
Diffstat (limited to 'TAO/TAO_IDL/fe/idl.ypp')
-rw-r--r--TAO/TAO_IDL/fe/idl.ypp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/fe/idl.ypp b/TAO/TAO_IDL/fe/idl.ypp
index f0ffa38346c..f7884d5a3c3 100644
--- a/TAO/TAO_IDL/fe/idl.ypp
+++ b/TAO/TAO_IDL/fe/idl.ypp
@@ -2323,7 +2323,7 @@ annotation_member
AST_Expression::ExprType type = $1;
Identifier *name = $2;
- // Annotation Member Names Can't Class with C++ keywords
+ // Annotation Member Names Can't Clash with C++ keywords
FE_Utils::original_local_name (name);
UTL_ScopedName *scoped_name = new UTL_ScopedName (name, 0);
AST_Expression *default_value = $3;
@@ -2548,7 +2548,7 @@ named_annotation_appl_param
{
AST_Annotation_Appl::Param *param = new AST_Annotation_Appl::Param;
param->id = $1;
- // Annotation Member Names Can't Class with C++ keywords
+ // Annotation Member Names Can't Clash with C++ keywords
FE_Utils::original_local_name (param->id);
param->expr = $3;
$$ = param;