You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/libraries/System.Private.CoreLib/src/System/Buffers/Text/Base64Decoder.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ public static partial class Base64
18
18
/// <param name="bytes">The output span which contains the result of the operation, i.e. the decoded binary data.</param>
19
19
/// <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>
20
20
/// <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>
21
-
/// <param name="isFinalBlock"><see langword="true"/> (default) when the input span contains the entire data to encode.
22
-
/// Set to <see langword="true"/> when the source buffer contains the entirety of the data to encode.
21
+
/// <param name="isFinalBlock"><see langword="true"/> (default) when the input span contains the entire data to decode.
22
+
/// Set to <see langword="true"/> when the source buffer contains the entirety of the data to decode.
23
23
/// Set to <see langword="false"/> if this method is being called in a loop and if more input data may follow.
24
24
/// At the end of the loop, call this (potentially with an empty source buffer) passing <see langword="true"/>.</param>
25
25
/// <returns>It returns the OperationStatus enum values:
0 commit comments