Skip to content

Commit

Permalink
Fix Base64.DecodeFromUtf8 docs
Browse files Browse the repository at this point in the history
Fix copy-paste documentation from `Base64.EncodeToUtf8()`.
  • Loading branch information
martincostello committed Jul 19, 2024
1 parent 57a2712 commit ff45e92
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public static partial class Base64
/// <param name="bytes">The output span which contains the result of the operation, i.e. the decoded binary data.</param>
/// <param name="bytesConsumed">The number of input bytes consumed during the operation. This can be used to slice the input for subsequent calls, if necessary.</param>
/// <param name="bytesWritten">The number of bytes written into the output span. This can be used to slice the output for subsequent calls, if necessary.</param>
/// <param name="isFinalBlock"><see langword="true"/> (default) when the input span contains the entire data to encode.
/// Set to <see langword="true"/> when the source buffer contains the entirety of the data to encode.
/// <param name="isFinalBlock"><see langword="true"/> (default) when the input span contains the entire data to decode.
/// Set to <see langword="true"/> when the source buffer contains the entirety of the data to decode.
/// Set to <see langword="false"/> if this method is being called in a loop and if more input data may follow.
/// At the end of the loop, call this (potentially with an empty source buffer) passing <see langword="true"/>.</param>
/// <returns>It returns the OperationStatus enum values:
Expand Down

0 comments on commit ff45e92

Please sign in to comment.