Fixed typos

This commit is contained in:
Benoit Blanchon
2017-12-15 17:52:47 +01:00
parent 36fe6535c4
commit e53e4e3dd9
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ ArduinoJson: change log
v5.12.0 v5.12.0
------- -------
* Added `JsonVariant::operator|` to return a default value (see bellow) * Added `JsonVariant::operator|` to return a default value (see below)
* Added a clear error message when compiled as C instead of C++ (issue #629) * Added a clear error message when compiled as C instead of C++ (issue #629)
* Added detection of MPLAB XC compiler (issue #629) * Added detection of MPLAB XC compiler (issue #629)
* Added detection of Keil ARM Compiler (issue #629) * Added detection of Keil ARM Compiler (issue #629)

View File

@ -3,7 +3,7 @@
// MIT License // MIT License
// //
// This example shows how to parse a JSON document in an HTTP response. // This example shows how to parse a JSON document in an HTTP response.
// It uses the Ethernet library, but can be easily adapter for Wifi. // It uses the Ethernet library, but can be easily adapted for Wifi.
// //
// It performs a GET resquest on arduinojson.org/example.json // It performs a GET resquest on arduinojson.org/example.json
// Here is the expected response: // Here is the expected response:

View File

@ -4,7 +4,7 @@
// //
// This example shows how to implement an HTTP server that sends JSON document // This example shows how to implement an HTTP server that sends JSON document
// in the responses. // in the responses.
// It uses the Ethernet library but can be easily adapter for Wifi. // It uses the Ethernet library but can be easily adapted for Wifi.
// //
// It sends the value of the analog and digital pins. // It sends the value of the analog and digital pins.
// The JSON document looks like the following: // The JSON document looks like the following:

View File

@ -2,7 +2,7 @@
// Copyright Benoit Blanchon 2014-2017 // Copyright Benoit Blanchon 2014-2017
// MIT License // MIT License
// //
// This example shows how to JSON document to a UDP socket. // This example shows how to send a JSON document to a UDP socket.
// At regular interval, it sends a UDP packet that contains the status of // At regular interval, it sends a UDP packet that contains the status of
// analog and digital pins. // analog and digital pins.
// The JSON document looks like the following: // The JSON document looks like the following: