Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Update doc comments in HashValue.cs #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/System.Data.HashFunction.Core/Utilities/HashValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ public sealed class HashValue
: IHashValue
{
/// <summary>
/// Gets the length of the hash value in bits.
/// Gets resulting byte array.
/// </summary>
/// <value>
/// The length of the hash value bit.
/// The hash value.
/// </value>
/// <remarks>
/// Implementations should coerce the input hash value to be <see cref="BitLength"/> size in bits.
/// </remarks>
public byte[] Hash { get; }

/// <summary>
/// Gets resulting byte array.
/// Gets the length of the hash value in bits.
/// </summary>
/// <value>
/// The hash value.
/// The length of the hash value bit.
/// </value>
/// <remarks>
/// Implementations should coerce the input hash value to be <see cref="BitLength"/> size in bits.
/// </remarks>
public int BitLength { get; }


Expand Down