]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/couchdb/couchdb.factor
factor: trim using lists
[factor.git] / basis / couchdb / couchdb.factor
index 15db1920e1d3934557a7f3a549b6110d3fa24bf9..29e6bb1c65a5088c07c0bc8bb841e309f3144d00 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2008, 2009 Alex Chapman
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs continuations debugger fry hashtables http
+USING: accessors assocs continuations debugger hashtables http
 http.client io io.encodings.string io.encodings.utf8 json.reader
-json.writer kernel locals make math math.parser namespaces sequences
+json.writer kernel make math math.parser namespaces sequences
 strings urls.encoding vectors ;
 IN: couchdb
 
@@ -18,7 +18,7 @@ SYMBOL: couch
 TUPLE: couchdb-error { data assoc } ;
 C: <couchdb-error> couchdb-error
 
-M: couchdb-error error. ( error -- )
+M: couchdb-error error.
     "CouchDB Error: " write data>>
     "error" over at [ print ] when*
     "reason" of [ print ] when* ;