Skip to content

Commit c265220

Browse files
authored
Fixing a typo in PersistEvent.cs (#3570)
Co-authored-by: tohidemyname <tohidemyname>
1 parent 7ed5bc8 commit c265220

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NHibernate/Event/PersistEvent.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public PersistEvent(object entity, IEventSource source)
1313
{
1414
if (entity == null)
1515
{
16-
throw new ArgumentNullException("entity", "Attempt to create create event with null entity");
16+
throw new ArgumentNullException("entity", "Attempt to create event with null entity");
1717
}
1818
this.entity = entity;
1919
}
@@ -36,4 +36,4 @@ public object Entity
3636
set { entity = value; }
3737
}
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)