diff --git a/src/System.Data.HashFunction.Core/Utilities/HashValue.cs b/src/System.Data.HashFunction.Core/Utilities/HashValue.cs
index de1bd14..d4c55eb 100644
--- a/src/System.Data.HashFunction.Core/Utilities/HashValue.cs
+++ b/src/System.Data.HashFunction.Core/Utilities/HashValue.cs
@@ -14,22 +14,22 @@ public sealed class HashValue
: IHashValue
{
///
- /// Gets the length of the hash value in bits.
+ /// Gets resulting byte array.
///
///
- /// The length of the hash value bit.
+ /// The hash value.
///
+ ///
+ /// Implementations should coerce the input hash value to be size in bits.
+ ///
public byte[] Hash { get; }
///
- /// Gets resulting byte array.
+ /// Gets the length of the hash value in bits.
///
///
- /// The hash value.
+ /// The length of the hash value bit.
///
- ///
- /// Implementations should coerce the input hash value to be size in bits.
- ///
public int BitLength { get; }