Skip to content

Commit

Permalink
Fixing a typo in PersistEvent.cs (#3570)
Browse files Browse the repository at this point in the history
Co-authored-by: tohidemyname <tohidemyname>
  • Loading branch information
tohidemyname authored Jun 29, 2024
1 parent 7ed5bc8 commit c265220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NHibernate/Event/PersistEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public PersistEvent(object entity, IEventSource source)
{
if (entity == null)
{
throw new ArgumentNullException("entity", "Attempt to create create event with null entity");
throw new ArgumentNullException("entity", "Attempt to create event with null entity");
}
this.entity = entity;
}
Expand All @@ -36,4 +36,4 @@ public object Entity
set { entity = value; }
}
}
}
}

0 comments on commit c265220

Please sign in to comment.