aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-05-11 12:50:44 -0700
committercolin <colin@cicadas.surf>2024-05-11 12:50:44 -0700
commit2dc174bf4960f413dfb0a051eb446c167984c546 (patch)
tree344bea0127011eba22597105a61c9a10daffc699
parent5f261045d4c116bed249eb478473cec82d2a259b (diff)
Remove: spurious partial example from readme
-rw-r--r--README.org21
1 files changed, 0 insertions, 21 deletions
diff --git a/README.org b/README.org
index 2007cfb..e48cfe9 100644
--- a/README.org
+++ b/README.org
@@ -64,24 +64,3 @@ class-defining macros.
This version of weekend is strongly tied to Hunchentoot.
-** An example
-
-Suppose you want a page that simply returns "hello":
-
-#+begin_src lisp
-
-(defclass hello ()
- ()
- (:metaclass weekend:endpoint)
- (:method :get)
- (:route-parts "hello")
- (:content-type "text/plain"))
-
-(defmethod weekend:handle ((req hello))
- "Hello!")
-
-
-
-
-
-#+end_src