diff options
Diffstat (limited to 'src/clojure/contrib/duck_streams.clj')
-rw-r--r-- | src/clojure/contrib/duck_streams.clj | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/clojure/contrib/duck_streams.clj b/src/clojure/contrib/duck_streams.clj index 8f57e67d..60241910 100644 --- a/src/clojure/contrib/duck_streams.clj +++ b/src/clojure/contrib/duck_streams.clj @@ -90,7 +90,8 @@ local file names. Uses *default-encoding* as the text encoding. Should be used inside with-open to ensure the Reader is properly - closed."} + closed." + :arglists '([x])} reader class) (defmethod reader Reader [x] @@ -132,7 +133,8 @@ local file names. Should be used inside with-open to ensure the Writer is properly - closed."} + closed." + :arglists '([x])} writer class) (defmethod writer PrintWriter [x] x) |