Fix broken parentheses

This commit is contained in:
Fred Miller 2018-10-24 15:29:12 +08:00
parent cecb9a9c38
commit e46c7883e1
No known key found for this signature in database
GPG key ID: CE1E1CA0EEB080EB

View file

@ -40,7 +40,7 @@ The header part is encoded using the 'ascii' encoding. This includes the '\r\n'
### Content Part
Contains the actual content of the message. The content part of a message uses [JSON-RPC](http://www.jsonrpc.org/) to describe requests, responses and notifications. The content part is encoded using the charset provided in the Content-Type field. It defaults to `utf-8`, which is the only encoding supported right now.
Prior versions of the protocol used the string constant `utf8` which is not a correct encoding constant according to [specification](http://www.iana.org/assignments/character-sets/character-sets.xhtml)). For backwards compatibility it is highly recommended that a client and a server treats the string `utf8` as `utf-8`.
(Prior versions of the protocol used the string constant `utf8` which is not a correct encoding constant according to [specification](http://www.iana.org/assignments/character-sets/character-sets.xhtml).) For backwards compatibility it is highly recommended that a client and a server treats the string `utf8` as `utf-8`.
### Example: