Skip to content

Commit f53e9fc

Browse files
committed
Spelling in comments.
1 parent 2fb594f commit f53e9fc

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

src/NHibernate.Test/Immutable/EntityWithMutableCollection/AbstractEntityWithManyToManyTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ public void CreateWithNonEmptyManyToManyCollectionMergeWithNewElement()
484484
s.Close();
485485

486486
AssertInsertCount(1);
487-
AssertUpdateCount(isContractVersioned && isPlanVersioned ? 1 : 0); // NH-specific: Hibernate issues a seperate UPDATE for the version number
487+
AssertUpdateCount(isContractVersioned && isPlanVersioned ? 1 : 0); // NH-specific: Hibernate issues a separate UPDATE for the version number
488488
ClearCounts();
489489

490490
s = OpenSession();

src/NHibernate.Test/ReadOnly/ReadOnlyVersionedNodes.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ public void MergeDetachedChildWithNewParentCommitWithReadOnlyChild()
617617
s.Transaction.Commit();
618618
s.Close();
619619

620-
AssertUpdateCount(0); // NH-specific: Hibernate issues a seperate UPDATE for the version number
620+
AssertUpdateCount(0); // NH-specific: Hibernate issues a separate UPDATE for the version number
621621
AssertInsertCount(1);
622622
ClearCounts();
623623

@@ -667,7 +667,7 @@ public void GetChildMakeReadOnlyThenMergeDetachedChildWithNewParent()
667667
s.Transaction.Commit();
668668
s.Close();
669669

670-
AssertUpdateCount(0); // NH-specific: Hibernate issues a seperate UPDATE for the version number
670+
AssertUpdateCount(0); // NH-specific: Hibernate issues a separate UPDATE for the version number
671671
AssertInsertCount(1);
672672
ClearCounts();
673673

src/NHibernate/Dialect/InformixDialect.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public override bool SupportsIdentityColumns
258258

259259
/// <summary>
260260
/// Whether this dialect have an Identity clause added to the data type or a
261-
/// completely seperate identity data type
261+
/// completely separate identity data type
262262
/// </summary>
263263
public override bool HasDataTypeInIdentityColumn
264264
{

src/NHibernate/Engine/Transaction/Isolater.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace NHibernate.Engine.Transaction
1818
/// </listheader>
1919
/// <item>
2020
/// <term><see cref="DoIsolatedWork"/> </term>
21-
/// <description>makes sure the work to be done is performed in a seperate, distinct transaction</description>
21+
/// <description>makes sure the work to be done is performed in a separate, distinct transaction</description>
2222
/// </item>
2323
/// <item>
2424
/// <term><see cref="DoNonTransactedWork"/> </term>
@@ -32,7 +32,7 @@ public class Isolater
3232

3333
/// <summary>
3434
/// Ensures that all processing actually performed by the given work will
35-
/// occur on a seperate transaction.
35+
/// occur on a separate transaction.
3636
/// </summary>
3737
/// <param name="work">The work to be performed. </param>
3838
/// <param name="session">The session from which this request is originating. </param>

src/NHibernate/Event/Default/DefaultMergeEventListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ private static bool IsVersionChanged(object entity, IEventSource source, IEntity
418418
//
419419
// This second condition is a special case which allows
420420
// an entity to be merged during the same transaction
421-
// (though during a seperate operation) in which it was
421+
// (though during a separate operation) in which it was
422422
// originally persisted/saved
423423
bool changed =
424424
!persister.VersionType.IsSame(persister.GetVersion(target, source.EntityMode),

src/NHibernate/Hql/Ast/ANTLR/SqlGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public partial class SqlGenerator : IErrorReporter
2727
* all append invocations on the buf should go through this Output instance variable.
2828
* The value of this variable may be temporarily substitued by sql function processing code
2929
* to catch generated arguments.
30-
* This is because sql function templates need arguments as seperate string chunks
30+
* This is because sql function templates need arguments as separate string chunks
3131
* that will be assembled into the target dialect-specific function call.
3232
*/
3333
private readonly List<ISqlWriter> outputStack = new List<ISqlWriter>();

src/NHibernate/ICriteria.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public interface ICriteria : ICloneable
121121
/// Specify an association fetching strategy. Currently, only
122122
/// one-to-many and one-to-one associations are supported.
123123
/// </summary>
124-
/// <param name="associationPath">A dot seperated property path.</param>
124+
/// <param name="associationPath">A dot separated property path.</param>
125125
/// <param name="mode">The Fetch mode.</param>
126126
/// <returns></returns>
127127
ICriteria SetFetchMode(string associationPath, FetchMode mode);
@@ -181,7 +181,7 @@ public interface ICriteria : ICloneable
181181
/// Create a new <see cref="ICriteria" />, "rooted" at the associated entity,
182182
/// using the specified join type.
183183
/// </summary>
184-
/// <param name="associationPath">A dot-seperated property path</param>
184+
/// <param name="associationPath">A dot-separated property path</param>
185185
/// <param name="joinType">The type of join to use</param>
186186
/// <returns>The created "sub criteria"</returns>
187187
ICriteria CreateCriteria(string associationPath, JoinType joinType);

src/NHibernate/IMultiQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public interface IMultiQuery
135135

136136
/// Should the query force a refresh of the specified query cache region?
137137
/// This is particularly useful in cases where underlying data may have been
138-
/// updated via a seperate process (i.e., not modified through Hibernate) and
138+
/// updated via a separate process (i.e., not modified through Hibernate) and
139139
/// allows the application to selectively refresh the query cache regions
140140
/// based on its knowledge of those events.
141141
/// <param name="forceCacheRefresh">Should the query result in a forcible refresh of

src/NHibernate/Id/TableGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace NHibernate.Id
2525
/// <c>System.Int32</c>
2626
/// </p>
2727
/// <p>
28-
/// The hi value MUST be fetched in a seperate transaction to the <c>ISession</c>
28+
/// The hi value MUST be fetched in a separate transaction to the <c>ISession</c>
2929
/// transaction so the generator must be able to obtain a new connection and commit it.
3030
/// Hence this implementation may not be used when the user is supplying connections.
3131
/// </p>

src/NHibernate/Id/TableHiLoGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace NHibernate.Id
3030
/// <c>schema</c> are optional.
3131
/// </p>
3232
/// <p>
33-
/// The hi value MUST be fecthed in a seperate transaction to the <c>ISession</c>
33+
/// The hi value MUST be fecthed in a separate transaction to the <c>ISession</c>
3434
/// transaction so the generator must be able to obtain a new connection and
3535
/// commit it. Hence this implementation may not be used when the user is supplying
3636
/// connections. In that case a <see cref="SequenceHiLoGenerator"/> would be a

src/NHibernate/Linq/Visitors/QuerySourceIdentifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace NHibernate.Linq.Visitors
88
/// Identifies and names - using <see cref="QuerySourceNamer"/> - all QueryModel query sources
99
/// </summary>
1010
/// <remarks>
11-
/// It may seem expensive to do this as a seperate visitation of the query model, but unfortunately
11+
/// It may seem expensive to do this as a separate visitation of the query model, but unfortunately
1212
/// trying to identify query sources on the fly (i.e. while parsing the query model to generate
1313
/// the HQL expression tree) means a query source may be referenced by a <c>QuerySourceReference</c>
1414
/// before it has been identified - and named.

src/NHibernate/Mapping/Property.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public bool IsLazy
263263
{
264264
// NH Specific: Hibernate doesn't make a distinction between
265265
// lazy and no-proxy, but NHibernate does. While Hibernate tracks
266-
// just whatever a property is lazy, we need to track lazy/no-proxy seperatedly.
266+
// just whatever a property is lazy, we need to track lazy/no-proxy separately.
267267

268268
return isLazy;
269269
}

src/NHibernate/Proxy/ILazyInitializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public interface ILazyInitializer
8484
/// Associate the proxy with the given session.
8585
///
8686
/// Care should be given to make certain that the proxy is added to the session's persistence context as well
87-
/// to maintain the symmetry of the association. That must be done seperately as this method simply sets an
87+
/// to maintain the symmetry of the association. That must be done separately as this method simply sets an
8888
/// internal reference. We do also check that if there is already an associated session that the proxy
8989
/// reference was removed from that previous session's persistence context.
9090
/// </summary>

0 commit comments

Comments
 (0)