Skip to content

Commit 56507f0

Browse files
authored
Update comment and change ulong to long
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent d6b5174 commit 56507f0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

HashifyNet/Algorithms/BuzHash/IBuzHashConfig.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ public interface IBuzHashConfig : IHashConfig<IBuzHashConfig>
4343
new int HashSizeInBits { get; }
4444

4545
/// <summary>
46-
/// Gets a list of <c>256</c> (preferably random and distinct) <see cref="ulong"/> values.
46+
/// Gets a list of <c>256</c> (preferably random and distinct) <see cref="long"/> values.
4747
/// </summary>
4848
/// <value>
49-
/// List of 256 <see cref="ulong"/> values.
49+
/// List of 256 <see cref="long"/> values.
5050
/// </value>
51-
IReadOnlyList<ulong> Rtab { get; }
51+
IReadOnlyList<long> Rtab { get; }
5252

5353
/// <summary>
5454
/// Gets the seed value.
@@ -57,9 +57,9 @@ public interface IBuzHashConfig : IHashConfig<IBuzHashConfig>
5757
/// The seed value.
5858
/// </value>
5959
/// <remarks>
60-
/// Only the bottom <see cref="IHashConfigBase.HashSizeInBits"/> bits shoudl be used for a given configuration.
60+
/// Only the bottom <see cref="IHashConfigBase.HashSizeInBits"/> bits should be used for a given configuration.
6161
/// </remarks>
62-
ulong Seed { get; }
62+
long Seed { get; }
6363

6464
/// <summary>
6565
/// Gets the shift direction.
@@ -69,4 +69,4 @@ public interface IBuzHashConfig : IHashConfig<IBuzHashConfig>
6969
/// </value>
7070
CircularShiftDirection ShiftDirection { get; }
7171
}
72-
}
72+
}

0 commit comments

Comments
 (0)