Skip to content

Commit

Permalink
Delete outdated todo comment (dotnet#36224)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored May 12, 2020
1 parent a07068a commit facdc36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,7 @@ public string ToString(string? format, IFormatProvider? provider)
return BigNumber.FormatBigInteger(this, format, NumberFormatInfo.GetInstance(provider));
}

public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider? provider = null) // TODO: change format to ReadOnlySpan<char>
public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider? provider = null)
{
return BigNumber.TryFormatBigInteger(this, format, NumberFormatInfo.GetInstance(provider), destination, out charsWritten);
}
Expand Down

0 comments on commit facdc36

Please sign in to comment.