Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 7606055

Browse files
committed
JsonUtils.WriteString: fix incorrect terminology in comment
1 parent d079a6d commit 7606055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Text/Json/JsonUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static void WriteString(TextWriter writer, string value)
8484
continue;
8585
}
8686

87-
// http://json.org/ spec requires any control char to be encoded
87+
// http://json.org/ spec requires any control char to be escaped
8888
if (JsConfig.EscapeUnicode || char.IsControl(value[i]))
8989
{
9090
// Default, turn into a \uXXXX sequence

0 commit comments

Comments
 (0)