Skip to content

Commit dd0662c

Browse files
authored
typo fixes
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent e23548e commit dd0662c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

HashifyNet/Core/DataType/IHashValue.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public interface IHashValue
130130
/// <summary>
131131
/// Converts the hash value to a 32-bit integer representation.
132132
/// </summary>
133-
/// <remarks>This method interprets the hash value as a little-endian byte array and converts it to an <see
133+
/// <remarks>This method interprets the hash value as a little-endian byte array and converts it to an <see
134134
/// cref="int"/>. If the hash value exceeds 4 bytes, an exception is thrown.</remarks>
135135
/// <returns>A 32-bit integer representation of the hash value.</returns>
136136
/// <exception cref="InvalidOperationException">Thrown if the hash value exceeds 4 bytes in length.</exception>
@@ -148,7 +148,7 @@ public interface IHashValue
148148
/// <summary>
149149
/// Converts the hash value to a 64-bit signed integer.
150150
/// </summary>
151-
/// <remarks>This method interprets the hash value as a little-endian byte array and converts it to a 64-bit
151+
/// <remarks>This method interprets the hash value as a little-endian byte array and converts it to a 64-bit
152152
/// signed integer. If the hash value exceeds 8 bytes, an exception is thrown.</remarks>
153153
/// <returns>A 64-bit signed integer representation of the hash value.</returns>
154154
/// <exception cref="InvalidOperationException">Thrown if the hash value is larger than 8 bytes.</exception>
@@ -157,7 +157,7 @@ public interface IHashValue
157157
/// <summary>
158158
/// Converts the hash value to a 16-bit signed integer.
159159
/// </summary>
160-
/// <remarks>This method interprets the hash value as a little-endian byte array and converts it to a 16-bit
160+
/// <remarks>This method interprets the hash value as a little-endian byte array and converts it to a 16-bit
161161
/// signed integer. If the hash value exceeds 2 bytes in length, an exception is thrown.</remarks>
162162
/// <returns>A 16-bit signed integer representation of the hash value.</returns>
163163
/// <exception cref="InvalidOperationException">Thrown if the hash value exceeds 2 bytes in length.</exception>
@@ -194,7 +194,7 @@ public interface IHashValue
194194
/// <summary>
195195
/// Converts the hash value to a <see cref="double"/> representation.
196196
/// </summary>
197-
/// <remarks>The hash must be exactly 8 bytes in length to perform the conversion. If the hash length is not
197+
/// <remarks>The hash must be exactly 8 bytes in length to perform the conversion. If the hash length is not
198198
/// 8 bytes, an exception is thrown.</remarks>
199199
/// <returns>A <see cref="double"/> representation of the hash value.</returns>
200200
/// <exception cref="InvalidOperationException">Thrown if the hash is not exactly 8 bytes in length.</exception>
@@ -203,7 +203,7 @@ public interface IHashValue
203203
/// <summary>
204204
/// Converts the hash value to a <see cref="decimal"/> representation.
205205
/// </summary>
206-
/// <remarks>The hash must be exactly 16 bytes in length to be converted to a <see cref="decimal"/>. If the
206+
/// <remarks>The hash must be exactly 16 bytes in length to be converted to a <see cref="decimal"/>. If the
207207
/// hash length is not 16 bytes, an exception is thrown.</remarks>
208208
/// <returns>A <see cref="decimal"/> representation of the hash value.</returns>
209209
/// <exception cref="InvalidOperationException">Thrown if the hash is not exactly 16 bytes in length.</exception>
@@ -212,7 +212,7 @@ public interface IHashValue
212212
/// <summary>
213213
/// Converts the hash value to a <see cref="DateTime"/> instance.
214214
/// </summary>
215-
/// <remarks>The hash must be exactly 8 bytes long to represent a valid <see cref="DateTime"/>. If the hash
215+
/// <remarks>The hash must be exactly 8 bytes long to represent a valid <see cref="DateTime"/>. If the hash
216216
/// length is not 8 bytes, an exception is thrown.</remarks>
217217
/// <returns>A <see cref="DateTime"/> instance created from the hash value.</returns>
218218
/// <exception cref="InvalidOperationException">Thrown if the hash is not exactly 8 bytes long.</exception>
@@ -221,7 +221,7 @@ public interface IHashValue
221221
/// <summary>
222222
/// Converts the hash value to a <see cref="DateTimeOffset"/>.
223223
/// </summary>
224-
/// <remarks>The hash must be exactly 8 bytes long to perform the conversion. The resulting <see
224+
/// <remarks>The hash must be exactly 8 bytes long to perform the conversion. The resulting <see
225225
/// cref="DateTimeOffset"/> is created with a UTC offset of <see cref="TimeSpan.Zero"/>.</remarks>
226226
/// <returns>A <see cref="DateTimeOffset"/> representation of the hash value.</returns>
227227
/// <exception cref="InvalidOperationException">Thrown if the hash is not exactly 8 bytes long.</exception>
@@ -230,7 +230,7 @@ public interface IHashValue
230230
/// <summary>
231231
/// Converts the hash value to a <see cref="TimeSpan"/> instance.
232232
/// </summary>
233-
/// <remarks>The hash value must be exactly 8 bytes long to be converted to a <see cref="TimeSpan"/>. If the
233+
/// <remarks>The hash value must be exactly 8 bytes long to be converted to a <see cref="TimeSpan"/>. If the
234234
/// hash length is not 8 bytes, an exception is thrown.</remarks>
235235
/// <returns>A <see cref="TimeSpan"/> representing the hash value.</returns>
236236
/// <exception cref="InvalidOperationException">Thrown if the hash value is not exactly 8 bytes long.</exception>
@@ -273,4 +273,4 @@ public interface IHashValue
273273
/// empty.</returns>
274274
string AsBase32();
275275
}
276-
}
276+
}

0 commit comments

Comments
 (0)