diff --git a/CHANGELOG.md b/CHANGELOG.md index 8edd931e..b68c75b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ArduinoJson: change log 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 detection of MPLAB XC compiler (issue #629) * Added detection of Keil ARM Compiler (issue #629) diff --git a/examples/JsonHttpClient/JsonHttpClient.ino b/examples/JsonHttpClient/JsonHttpClient.ino index 00138d2c..1ff84db5 100644 --- a/examples/JsonHttpClient/JsonHttpClient.ino +++ b/examples/JsonHttpClient/JsonHttpClient.ino @@ -3,7 +3,7 @@ // MIT License // // 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 // Here is the expected response: diff --git a/examples/JsonServer/JsonServer.ino b/examples/JsonServer/JsonServer.ino index f98d46a7..c564a4cc 100644 --- a/examples/JsonServer/JsonServer.ino +++ b/examples/JsonServer/JsonServer.ino @@ -4,7 +4,7 @@ // // This example shows how to implement an HTTP server that sends JSON document // 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. // The JSON document looks like the following: diff --git a/examples/JsonUdpBeacon/JsonUdpBeacon.ino b/examples/JsonUdpBeacon/JsonUdpBeacon.ino index 0df99d51..f5668228 100644 --- a/examples/JsonUdpBeacon/JsonUdpBeacon.ino +++ b/examples/JsonUdpBeacon/JsonUdpBeacon.ino @@ -2,7 +2,7 @@ // Copyright Benoit Blanchon 2014-2017 // 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 // analog and digital pins. // The JSON document looks like the following: