summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-14 11:05:06 -0600
committerColin Okay <okay@toyful.space>2022-02-14 11:05:06 -0600
commit3f16dc6322f06c50c42311938ff2fcd025ef3199 (patch)
tree9411106742d81429806c0b2efd4e185c21ea88a4
parent175d667d045fd70dc4390bc2b07055f783ab80d5 (diff)
typo
-rw-r--r--lazybones-client.asd2
-rw-r--r--lazybones-client.lisp4
2 files changed, 3 insertions, 3 deletions
diff --git a/lazybones-client.asd b/lazybones-client.asd
index 0762cac..b9dd4cb 100644
--- a/lazybones-client.asd
+++ b/lazybones-client.asd
@@ -2,7 +2,7 @@
:description "Generate client functions for a LAZYBONES:APP instance"
:author "Colin Okay <okay@toyful.space>"
:license "AGPLv3"
- :version "0.1.2"
+ :version "0.1.3"
:serial t
:depends-on (#:lazybones)
:components ((:file "lazybones-client")))
diff --git a/lazybones-client.lisp b/lazybones-client.lisp
index bf721c3..e3ad347 100644
--- a/lazybones-client.lisp
+++ b/lazybones-client.lisp
@@ -11,7 +11,7 @@
(:export #:get #:put #:post #:head #:patch #:delete))
(defpackage #:lazybones-client.shared
- (:export #:*host* #:*body* #:*cookies* #:*headers* #:request-with))
+ (:export #:*host* #:*body* #:*cookies* #:*headers*))
(in-package :lazybones-client)
@@ -142,7 +142,7 @@ COOKIES should be an instance of CL-COOKIE:COOKIE-JAR. Defaults to
(format
out
"
-(defpacakage #:lazybones-client.shared (:export #:*host* #:*body* #:*headers* #:*cookies*))
+(defpackage #:lazybones-client.shared (:export #:*host* #:*body* #:*headers* #:*cookies*))
(defpackage :~a (:use :cl :lazybones-client.shared)
(:export #:*host* #:*body* #:*headers* #:*cookies* #:request-with~% ~{#:~a~^~%~}))"
(app-client-package-name app)