From 4d00105e5c7fc39622ec26c6d2ecafc09ca7910b Mon Sep 17 00:00:00 2001
From: Niels <niels.lohmann@gmail.com>
Date: Sun, 4 Jan 2015 19:05:46 +0100
Subject: [PATCH] tidy up

---
 README.md   | 16 +++++++++++-----
 src/JSON.cc |  1 -
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 6c00d2bb..1efa25fd 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # JSON for Modern C++
 
-*What if JSON was party of modern C++?*
+*What if JSON was part of modern C++?*
 
 [![Build Status](https://travis-ci.org/nlohmann/json.png?branch=master)](https://travis-ci.org/nlohmann/json)
 [![Coverage Status](https://img.shields.io/coveralls/nlohmann/json.svg)](https://coveralls.io/r/nlohmann/json)
@@ -166,6 +166,9 @@ j.empty();    // false
 j.type();     // JSON::value_type::array
 j.clear();    // the array is empty again
 
+// comparison
+j == "[\"foo\", 1, true]"_json;  // true
+
 // create an object
 JSON o;
 o["foo"] = 23;
@@ -235,15 +238,18 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
 To compile the unit tests, you need to execute
 
 ```sh
-  autoreconf -i
-  ./configure
-  make
+$ autoreconf -i
+$ ./configure
+$ make
 ```
 
 The unit tests can then be executed with
 
 ```sh
-./json_unit
+$ ./json_unit
+
+===============================================================================
+All tests passed (863 assertions in 10 test cases)
 ```
 
 For more information, have a look at the file [.travis.yml](https://github.com/nlohmann/json/blob/master/.travis.yml).
diff --git a/src/JSON.cc b/src/JSON.cc
index c225b5e8..3c13b155 100644
--- a/src/JSON.cc
+++ b/src/JSON.cc
@@ -1832,7 +1832,6 @@ JSON JSON::Parser::parse()
             // process nonempty array
             if (_current != ']')
             {
-                size_t element_count = 0;
                 do
                 {
                     result.push_back(parse());