In the NDN constructor comments, document the verify flag.
diff --git a/js/NDN.js b/js/NDN.js
index 60840b7..3315152 100644
--- a/js/NDN.js
+++ b/js/NDN.js
@@ -9,12 +9,13 @@
 /**
  * settings is an associative array with the following defaults:
  * {
- *   getTransport: function() { return new WebSocketTransport(); }
+ *   getTransport: function() { return new WebSocketTransport(); },
  *   getHostAndPort: transport.defaultGetHostAndPort,
  *   host: null, // If null, use getHostAndPort when connecting.
  *   port: 9696,
- *   onopen: function() { if (LOG > 3) console.log("NDN connection established."); }
- *   onclose: function() { if (LOG > 3) console.log("NDN connection closed."); }
+ *   onopen: function() { if (LOG > 3) console.log("NDN connection established."); },
+ *   onclose: function() { if (LOG > 3) console.log("NDN connection closed."); },
+ *   verify: true // If false, don't verify and call upcall with Closure.UPCALL_CONTENT_UNVERIFIED.
  * }
  * 
  * getHostAndPort is a function, on each call it returns a new { host: host, port: port } or