diff --git a/src/NHibernate/Criterion/MatchMode.cs b/src/NHibernate/Criterion/MatchMode.cs index c83f4031ff5..27b10c07602 100644 --- a/src/NHibernate/Criterion/MatchMode.cs +++ b/src/NHibernate/Criterion/MatchMode.cs @@ -92,7 +92,7 @@ public override string ToString() private class ExactMatchMode : MatchMode { /// - /// Initialize a new instance of the class. + /// Initialize a new instance of the class. /// public ExactMatchMode() : base(0, "EXACT") { @@ -115,7 +115,7 @@ public override string ToMatchString(string pattern) private class StartMatchMode : MatchMode { /// - /// Initialize a new instance of the class. + /// Initialize a new instance of the class. /// public StartMatchMode() : base(1, "START") { @@ -138,7 +138,7 @@ public override string ToMatchString(string pattern) private class EndMatchMode : MatchMode { /// - /// Initialize a new instance of the class. + /// Initialize a new instance of the class. /// public EndMatchMode() : base(2, "END") { @@ -162,7 +162,7 @@ public override string ToMatchString(string pattern) private class AnywhereMatchMode : MatchMode { /// - /// Initialize a new instance of the class. + /// Initialize a new instance of the class. /// public AnywhereMatchMode() : base(3, "ANYWHERE") { @@ -179,4 +179,4 @@ public override string ToMatchString(string pattern) } } } -} \ No newline at end of file +} diff --git a/src/NHibernate/Linq/Visitors/PreTransformationParameters.cs b/src/NHibernate/Linq/Visitors/PreTransformationParameters.cs index c5f713216a8..6f70d21cda6 100644 --- a/src/NHibernate/Linq/Visitors/PreTransformationParameters.cs +++ b/src/NHibernate/Linq/Visitors/PreTransformationParameters.cs @@ -7,7 +7,7 @@ namespace NHibernate.Linq.Visitors { /// - /// Contains the information needed by to perform an early transformation. + /// Contains the information needed by to perform an early transformation. /// public class PreTransformationParameters { diff --git a/src/NHibernate/Linq/Visitors/PreTransformationResult.cs b/src/NHibernate/Linq/Visitors/PreTransformationResult.cs index 6f55ddc7bba..ec0d527e9a9 100644 --- a/src/NHibernate/Linq/Visitors/PreTransformationResult.cs +++ b/src/NHibernate/Linq/Visitors/PreTransformationResult.cs @@ -5,7 +5,7 @@ namespace NHibernate.Linq.Visitors { /// - /// The result of method. + /// The result of method. /// public class PreTransformationResult { diff --git a/src/NHibernate/Multi/LinqBatchItem.cs b/src/NHibernate/Multi/LinqBatchItem.cs index 733b3115505..de9d951118a 100644 --- a/src/NHibernate/Multi/LinqBatchItem.cs +++ b/src/NHibernate/Multi/LinqBatchItem.cs @@ -43,7 +43,7 @@ private static LinqBatchItem GetForQuery(IQueryable query, Exp } /// - /// Create instance via methods + /// Create instance via methods /// /// Result type public partial class LinqBatchItem : QueryBatchItem, ILinqBatchItem