Skip to content

Commit

Permalink
Make the type readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
hadashiA committed Aug 18, 2023
1 parent 984c3c8 commit 1a1e7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ulid.Unity/Assets/Scripts/Ulid/Ulid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace System // wa-o, System Namespace!?
#if NETCOREAPP3_1_OR_GREATER
[System.Text.Json.Serialization.JsonConverter(typeof(Cysharp.Serialization.Json.UlidJsonConverter))]
#endif
public partial struct Ulid : IEquatable<Ulid>, IComparable<Ulid>, IComparable
public readonly partial struct Ulid : IEquatable<Ulid>, IComparable<Ulid>, IComparable
#if NET6_0_OR_GREATER
, ISpanFormattable
#endif
Expand Down

0 comments on commit 1a1e7ff

Please sign in to comment.