Skip to content

Commit b52457a

Browse files
committed
Fix typos
1 parent 50b518f commit b52457a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/NHibernate/Cfg/Environment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public static string Version
175175
/// <summary> Should named queries be checked during startup (the default is enabled). </summary>
176176
/// <remarks>Mainly intended for test environments.</remarks>
177177
public const string QueryStartupChecking = "query.startup_check";
178-
/// <summary> Should never cached entity/collecion query cache throws exception(the default is enabled). /// </summary>
178+
/// <summary> Should using a never cached entity/collection in a cacheable query throw an exception (the default is true). /// </summary>
179179
public const string QueryThrowNeverCached = "query.throw_never_cached";
180180

181181
/// <summary> Enable statistics collection</summary>

src/NHibernate/Cfg/Settings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ public Settings()
139139
/// </summary>
140140
public bool ThrowOnSchemaUpdate { get; internal set; }
141141

142+
/// <summary>
143+
/// Should using a never cached entity/collection in a cacheable query throw an exception.
144+
/// </summary>
142145
public bool QueryThrowNeverCached { get; internal set; }
143146

144147
#region NH specific

src/NHibernate/Persister/IPersister.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace NHibernate.Persister
66
{
7-
// TODO 6.0: Make this public and make IEntityPersiser and ICollectionPersister derive it.
7+
// TODO 6.0: Make this public and make IEntityPersister and ICollectionPersister derive it.
88
internal interface IPersister
99
{
1010
/// <summary>

0 commit comments

Comments
 (0)