Upgrade jsmn to 18e9fe42cbfe21d65076f5c77ae2be379ad1270f am: 983ec7f176 am: be36d7b6d0
am: 7513ed6ed6

Change-Id: Ie0dceae75e773e1cc8fa4a53271fb159dc3b1943
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..1c8ebd3
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,4 @@
+language: c
+sudo: false
+script:
+  - make test
diff --git a/METADATA b/METADATA
index f404bfc..650d696 100644
--- a/METADATA
+++ b/METADATA
@@ -1,5 +1,5 @@
 name: "jsmn"
-description: "jsmn (pronounced like 'jasmine') is a minimalistic JSON parser in C."
+description: "jsmn (pronounced like \'jasmine\') is a minimalistic JSON parser in C."
 third_party {
   url {
     type: HOMEPAGE
@@ -7,12 +7,12 @@
   }
   url {
     type: ARCHIVE
-    value: "https://github.com/zserge/jsmn/archive/732d283ee9a2e5c34c52af0e044850576888ab09.zip"
+    value: "https://github.com/zserge/jsmn/archive/18e9fe42cbfe21d65076f5c77ae2be379ad1270f.zip"
   }
-  version: "732d283ee9a2e5c34c52af0e044850576888ab09"
+  version: "18e9fe42cbfe21d65076f5c77ae2be379ad1270f"
   last_upgrade_date {
-    year: 2018
-    month: 9
-    day: 6
+    year: 2019
+    month: 2
+    day: 1
   }
 }
diff --git a/jsmn.c b/jsmn.c
index bcd6392..853c3f1 100644
--- a/jsmn.c
+++ b/jsmn.c
@@ -1,7 +1,7 @@
 #include "jsmn.h"
 
 /**
- * Allocates a fresh unused token from the token pull.
+ * Allocates a fresh unused token from the token pool.
  */
 static jsmntok_t *jsmn_alloc_token(jsmn_parser *parser,
 		jsmntok_t *tokens, size_t num_tokens) {