Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfreitasleal committed May 17, 2018
1 parent bcd7a8c commit 9c9245f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions trunk/Templates/CSLA40/CSharp/XmlComment.asp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<%
string classType = "business object";
if (Info.ObjectType == CslaObjectType.BaseClass)
classType = "base classe";
classType = "base class";
else if (Info.ObjectType == CslaObjectType.CriteriaClass)
classType = "criteria classe";
classType = "criteria class";
if ((firstComment == null && string.IsNullOrEmpty(Info.Parent.GenerationParams.ClassCommentFilenameSuffix)) ||
(firstComment == true && !string.IsNullOrEmpty(Info.Parent.GenerationParams.ClassCommentFilenameSuffix)))
Expand Down
4 changes: 2 additions & 2 deletions trunk/Templates/CSLA40DAL/CSharp/XmlComment.asp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<%
string classType = "business object";
if (Info.ObjectType == CslaObjectType.BaseClass)
classType = "base classe";
classType = "base class";
else if (Info.ObjectType == CslaObjectType.CriteriaClass)
classType = "criteria classe";
classType = "criteria class";
if ((firstComment == null && string.IsNullOrEmpty(Info.Parent.GenerationParams.ClassCommentFilenameSuffix)) ||
(firstComment == true && !string.IsNullOrEmpty(Info.Parent.GenerationParams.ClassCommentFilenameSuffix)))
Expand Down
4 changes: 2 additions & 2 deletions trunk/Templates/CSLA40DAL/VB/XmlComment.asp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<%
string classType = "business object";
if (Info.ObjectType == CslaObjectType.BaseClass)
classType = "base classe";
classType = "base class";
else if (Info.ObjectType == CslaObjectType.CriteriaClass)
classType = "criteria classe";
classType = "criteria class";
if ((firstComment == null && string.IsNullOrEmpty(Info.Parent.GenerationParams.ClassCommentFilenameSuffix)) ||
(firstComment == true && !string.IsNullOrEmpty(Info.Parent.GenerationParams.ClassCommentFilenameSuffix)))
Expand Down

0 comments on commit 9c9245f

Please sign in to comment.