Skip to content

Commit 889eaf6

Browse files
carlossanlopbartonjsahsonkhan
authored
suggestions by ahsonkhan and bartonjs
Co-Authored-By: Jeremy Barton <[email protected]> Co-Authored-By: Ahson Khan <[email protected]>
1 parent 63f04f4 commit 889eaf6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

xml/System.Text.Json/JsonElement.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ For other types, the value of <xref:System.Text.Json.JsonElement.GetRawText> is
763763
764764
## Remarks
765765
766-
This method does not create a byte array representation of values other than bsae 64-encoded JSON strings.
766+
This method does not create a byte array representation of values other than base 64-encoded JSON strings.
767767
768768
]]>
769769
</format>

xml/System.Text.Json/JsonReaderOptions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ By default, the reader throws a <xref:System.Text.Json.JsonReaderException> if i
9595
<ReturnType>System.Int32</ReturnType>
9696
</ReturnValue>
9797
<Docs>
98-
<summary>Gets or sets the maximum depth allowed when reading JSON, with the default (i.e. 0) indicating a maximum depth of 64. </summary>
98+
<summary>Gets or sets the maximum depth allowed when reading JSON, with the default (that is, 0) indicating a maximum depth of 64. </summary>
9999
<value>The maximum depth allowed when reading JSON.</value>
100100
<remarks>
101101
<format type="text/markdown">

xml/System.Text.Json/Utf8JsonReader.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -901,9 +901,9 @@ For comments, this value points to before the first comment delimiter (that is,
901901
<Parameter Name="value" Type="System.Byte[]" RefType="out" />
902902
</Parameters>
903903
<Docs>
904-
<param name="value">If the method succeeds, a byte array that contains the base 64-encoded JSON string.</param>
904+
<param name="value">If the method succeeds, contains the decoded binary representation of the base 64 text.</param>
905905
<summary>Tries to parse the current JSON token value from the source and decodes the base 64 encoded JSON string as a byte array.</summary>
906-
<returns><see langword="true" /> if the entire token value is encoded as valid base 64 text and can be successfully decoded; <see langword="false" /> otherwise.</returns>
906+
<returns><see langword="true" /> if the entire token value is encoded as valid base 64 text and can be successfully decoded to bytes; <see langword="false" /> otherwise.</returns>
907907
<remarks>To be added.</remarks>
908908
<exception cref="T:System.InvalidOperationException">The JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
909909
</Docs>

0 commit comments

Comments
 (0)