f9e7bceac2685edcc2c2e9b33ac114e73ce46e50
kent
  Tue Apr 29 09:55:32 2014 -0700
Removed out of date part of comment.
diff --git src/lib/jsonWrite.c src/lib/jsonWrite.c
index 5883cc0..97c05a4 100644
--- src/lib/jsonWrite.c
+++ src/lib/jsonWrite.c
@@ -1,21 +1,16 @@
-/* jsonWrite - Helper routines for writing out JSON. 
- *
- * Apologies for the awkward 'isMiddle' parameter.  This is
- * from JSON not allowing a terminal comma for a comma separated
- * list.   A larger, more usable library might find a way to
- * take care of this for you. */
+/* jsonWrite - Helper routines for writing out JSON.  */
 
 #include "common.h"
 #include "hash.h"
 #include "dystring.h"
 #include "sqlNum.h"
 #include "jsonParse.h"
 #include "jsonWrite.h"
 
 struct jsonWrite *jsonWriteNew()
 /* Return new empty jsonWrite struct. */
 {
 struct jsonWrite *jw;
 AllocVar(jw);
 jw->dy = dyStringNew(0);
 return jw;