Skip to content

Commit

Permalink
get rid of extra newlines in printed literals
Browse files Browse the repository at this point in the history
  • Loading branch information
hiredman committed Mar 24, 2013
1 parent 0fa20ee commit 7f24f41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opennlp/sample.clj
Expand Up @@ -7,10 +7,10 @@
(.write w "#opennlp/sample {")
(.write w ":category ")
(binding [*out* w]
(prn (.getCategory sample)))
(pr (.getCategory sample)))
(.write w " :text ")
(binding [*out* w]
(prn (vec (.getText sample))))
(pr (vec (.getText sample))))
(.write w "}"))

(defmethod print-method DocumentSample
Expand Down

0 comments on commit 7f24f41

Please sign in to comment.