aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-07 13:47:13 -0600
committerColin Okay <okay@toyful.space>2022-02-07 13:47:13 -0600
commit832f64a42bff4480fa246361292718f4befcc85d (patch)
tree9871ecbdca30a561eb90b47c9a52231d0af2d016
parent0402a9147f726124ed79a892ce69587b0d7f8c71 (diff)
typo
-rw-r--r--lazybones-hunchentoot.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lazybones-hunchentoot.lisp b/lazybones-hunchentoot.lisp
index 8f9b604..e60ebc5 100644
--- a/lazybones-hunchentoot.lisp
+++ b/lazybones-hunchentoot.lisp
@@ -166,8 +166,8 @@ the value of the Content-Type request header."
(defmethod h:acceptor-dispatch-request ((acceptor lazybones-acceptor) request)
(loop for app in (acceptor-apps acceptor)
- for (endpoint . args) = (lzb:find-endpoint app request)
+ for (endpoint . args) = (lzb::find-endpoint app request)
when endpoint
- return (lzb:run-endpoint endpoint args request h:*reply* app)
+ return (lzb::run-endpoint endpoint args request h:*reply* app)
;; if no endpoint was found, call next method.
finally (call-next-method)))