From e33a9b82cd325b5ee0b65455480c5f2bf471cb42 Mon Sep 17 00:00:00 2001
From: Brandon Byars <brandon.byars@gmail.com>
Date: Mon, 27 Mar 2017 13:04:58 -0500
Subject: [PATCH] README changes

---
 README.MD | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/README.MD b/README.MD
index 8764a2a..239ed8d 100644
--- a/README.MD
+++ b/README.MD
@@ -53,10 +53,14 @@ and response JSON body is captured, and all fields and types are added to the sp
 * It assumes you're testing against an HTTP API rather than an HTTPS one
 * It assumes no tests are running in parallel
 * It does nothing with headers, more or less assuming application/json (easy to fix)
-* I think it assumes you never use chunked encoding and always write the request body in one fell swoop
+* I think it assumes you never use chunked encoding and always write the request body in one fell swoop (not tested)
 * It does not detect required fields. Future versions can assume required if ALL tests pass it in
+* It makes a best effort at type inference. Should be extensible in the future.
 
 ## Contributing
 
 `node-defacto` is not written in ES6 because it needs to support the oldest
 supported version of node (4.0), which does not fully support ES6.
+
+`./build` should run the build, or (assuming you've previously run an `npm install` and
+an `npm install -g grunt-cli`), `grunt` will do the same.