Skip to content

Commit

Permalink
docs: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed Sep 11, 2018
1 parent 0e436cb commit 10d6e45
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/MultiHash.cs
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,9 @@ public bool Equals(MultiHash that)
/// Returns the <see cref="Base58"/> encoding of the <see cref="MultiHash"/>.
/// </summary>
/// <returns>
/// A Base58 representaton of the MultiHash.
/// A base-58 representaton of the MultiHash.
/// </returns>
/// <seealso cref="ToBase58"/>
public override string ToString()
{
return this.ToBase58();
Expand All @@ -332,8 +333,8 @@ public override string ToString()
/// Returns the <see cref="Base58"/> encoding of the <see cref="MultiHash"/>.
/// </summary>
/// <returns>
/// The base-58 representation of the <see cref="Multihash"/>.
/// /returns>
/// The <see cref="Base58"/> representation of the <see cref="MultiHash"/>.
/// </returns>
public string ToBase58()
{
using (var ms = new MemoryStream())
Expand All @@ -347,8 +348,8 @@ public string ToBase58()
/// Returns the <see cref="Base32"/> encoding of the <see cref="MultiHash"/>.
/// </summary>
/// <returns>
/// The base-32 representation of the <see cref="Multihash"/>.
/// /returns>
/// The <see cref="Base32"/> representation of the <see cref="MultiHash"/>.
/// </returns>
public string ToBase32()
{
using (var ms = new MemoryStream())
Expand Down

0 comments on commit 10d6e45

Please sign in to comment.