Skip to content

Commit a759f83

Browse files
Update xml comment outdated by the PR
To be squashed
1 parent 48ee983 commit a759f83

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/NHibernate/Action/DelayedPostInsertIdentifier.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ namespace NHibernate.Action
44
{
55
/// <summary>
66
/// Acts as a stand-in for an entity identifier which is supposed to be
7-
/// generated on insert (like an IDENTITY column) where the insert needed to
8-
/// be delayed because we were outside a transaction when the persist
9-
/// occurred (save currently still performs the insert).
10-
///
11-
/// The stand-in is only used within the see cref="NHibernate.Engine.PersistenceContext"
12-
/// in order to distinguish one instance from another; it is never injected into
13-
/// the entity instance or returned to the client...
7+
/// generated on insert (like an IDENTITY column), when an entity is <c>Persist</c>ed.
8+
/// <c>Save</c> still performs the insert.
149
/// </summary>
10+
/// <remarks>
11+
/// The stand-in is only used within the <see cref="NHibernate.Engine.IPersistenceContext"/>
12+
/// in order to distinguish one instance from another; it is never injected into
13+
/// the entity instance or returned to the client.
14+
/// </remarks>
1515
[Serializable]
1616
public class DelayedPostInsertIdentifier
1717
{
@@ -53,4 +53,4 @@ public override string ToString()
5353
return string.Format("<delayed:{0}>", sequence);
5454
}
5555
}
56-
}
56+
}

0 commit comments

Comments
 (0)