Skip to content

Commit

Permalink
Correct summary spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Codespilot committed Oct 8, 2024
1 parent ea0c7be commit 9304bae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Source/Euonia.Domain/Seedwork/IHasCreateTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public interface IHasCreateTime
{
/// <summary>
/// Gets or sets the create time.
/// Gets or sets the creation time.
/// </summary>
DateTime CreateTime { get; set; }
}
10 changes: 5 additions & 5 deletions Source/Euonia.Domain/Seedwork/IHasSnowflakeId.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
namespace Nerosoft.Euonia.Domain;

/// <summary>
/// Represents the object identifier would generated using SnowflakeId.
/// Represents the object identifier would generate using SnowflakeId.
/// </summary>
public interface IHasSnowflakeId
{
/// <summary>
/// Gets or sets the object identifier of Int64 type.
/// </summary>
long Id { get; set; }
/// <summary>
/// Gets or sets the object identifier of Int64 type.
/// </summary>
long Id { get; set; }
}
2 changes: 1 addition & 1 deletion Source/Euonia.Domain/Seedwork/ITombstone.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Nerosoft.Euonia.Domain;

/// <summary>
/// Represent the object can be delete logically.
/// Represent the object can be deleted logically.
/// </summary>
public interface ITombstone
{
Expand Down
1 change: 0 additions & 1 deletion Source/Euonia.Repository.EfCore/DataContextBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ protected virtual void SetEntryValues(IEnumerable<EntityEntry> entries)
break;
case EntityState.Modified:
SetModifiedEntry(entry, time);

break;
default:
continue;
Expand Down

0 comments on commit 9304bae

Please sign in to comment.