Skip to content

Commit 757d02f

Browse files
authored
Fix Intellisense bugs (#3698)
* remove exception for class * fix intellisense issues
1 parent 661492a commit 757d02f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xml/System.Text.Json/Utf8JsonWriter.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ The property name should already be escaped when the instance of <xref:System.Te
833833
<Parameter Name="utf8Value" Type="System.ReadOnlySpan&lt;System.Byte&gt;" />
834834
</Parameters>
835835
<Docs>
836-
<param name="utf8Value">The UTF-8 encoded value to be written as a JSON comment within `/*..*/`.</param>
836+
<param name="utf8Value">The UTF-8 encoded value to be written as a JSON comment within <c>/*..*/</c>.</param>
837837
<summary>Writes a UTF-8 text value as a JSON comment.</summary>
838838
<remarks>
839839
<format><![CDATA[
@@ -848,7 +848,7 @@ The comment value is not escaped before writing.
848848

849849
-or-
850850

851-
<paramref name="utf8Value" /> contains a comment delimiter (that is, `*/`).</exception>
851+
<paramref name="utf8Value" /> contains a comment delimiter (that is, <c>*/</c>).</exception>
852852
</Docs>
853853
</Member>
854854
<Member MemberName="WriteCommentValue">
@@ -871,7 +871,7 @@ The comment value is not escaped before writing.
871871
<Parameter Name="value" Type="System.ReadOnlySpan&lt;System.Char&gt;" />
872872
</Parameters>
873873
<Docs>
874-
<param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within `/*..*/`.</param>
874+
<param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within <c>/*..*/</c>.</param>
875875
<summary>Writes a UTF-16 text value as a JSON comment.</summary>
876876
<remarks>
877877
<format><![CDATA[
@@ -886,7 +886,7 @@ The comment value is not escaped before writing.
886886

887887
-or-
888888

889-
<paramref name="value" /> contains a comment delimiter (that is, `*/`).</exception>
889+
<paramref name="value" /> contains a comment delimiter (that is, <c>*/</c>).</exception>
890890
</Docs>
891891
</Member>
892892
<Member MemberName="WriteCommentValue">
@@ -909,7 +909,7 @@ The comment value is not escaped before writing.
909909
<Parameter Name="value" Type="System.String" />
910910
</Parameters>
911911
<Docs>
912-
<param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within `/*..*/`.</param>
912+
<param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within <c>/*..*/</c>.</param>
913913
<summary>Writes a string text value as a JSON comment.</summary>
914914
<remarks>
915915
<format><![CDATA[
@@ -924,7 +924,7 @@ The comment value is not escaped before writing.
924924

925925
-or-
926926

927-
<paramref name="value" /> contains a comment delimiter (that is, `*/`).</exception>
927+
<paramref name="value" /> contains a comment delimiter (that is, <c>*/</c>).</exception>
928928
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
929929
</Docs>
930930
</Member>

0 commit comments

Comments
 (0)