We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3cd53 commit 21cd037Copy full SHA for 21cd037
HashifyNet/Algorithms/MurmurHash/MurmurHash3Config.cs
@@ -49,10 +49,10 @@ public class MurmurHash3Config
49
/// <value>
50
/// The seed.
51
/// </value>
52
- public uint Seed { get; set; } = 0U;
+ public int Seed { get; set; } = 0U;
53
54
/// <summary>
55
- /// Makes a deep clone of current instance.
+ /// Makes a deep clone of the current instance.
56
/// </summary>
57
/// <returns>A deep clone of the current instance.</returns>
58
public IMurmurHash3Config Clone() =>
@@ -62,4 +62,4 @@ public IMurmurHash3Config Clone() =>
62
Seed = Seed
63
};
64
}
65
-}
+}
0 commit comments