summaryrefslogtreecommitdiff
path: root/brisket.hy
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>2019-04-26 12:27:02 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>2019-04-26 12:27:02 -0400
commitfabad48a0a0e0523eaeb854bacb528c2bcce90f6 (patch)
tree61f21f9c0c25a2584c97da3c02be3596630c20d6 /brisket.hy
parent22ab0dd01fd2d389959ce33652f3c9b2fab2b20b (diff)
Fix docstring for `err'
Diffstat (limited to 'brisket.hy')
-rw-r--r--brisket.hy2
1 files changed, 1 insertions, 1 deletions
diff --git a/brisket.hy b/brisket.hy
index 11d0e59..bf4d0d3 100644
--- a/brisket.hy
+++ b/brisket.hy
@@ -90,7 +90,7 @@ The lookup order is:
(.strip (nth sliced 1) "\""))))))
(defn err [&rest args]
- "Displays ARGS to stdout."
+ "Displays ARGS to stderr."
(.write stderr (+ (first args) "\n") #* (rest args)))
(when (= __name__ "__main__")