summaryrefslogtreecommitdiff
path: root/src/pages/tavern.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/tavern.lisp')
-rw-r--r--src/pages/tavern.lisp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pages/tavern.lisp b/src/pages/tavern.lisp
index 591d424..2fb7498 100644
--- a/src/pages/tavern.lisp
+++ b/src/pages/tavern.lisp
@@ -10,7 +10,7 @@
(let ((player (player tavern)))
(render :details player)
(when (player-heroes player)
- (:h2 "Your Heroes'")
+ (:h2 "Your Heroes:")
(render :list (player-heroes player)))
(:a :href "tavern/adventures" "Adventures for which you are seer.")
(:br)
@@ -24,8 +24,7 @@
(defclass/std tavern-adventures ()
((your-adventures)))
-
(defrender t ((page tavern-adventures))
(with-page (:title "Your Adventures")
- (:h1 "You are seer on teh following adventures")
+ (:h1 "You are seer on the following adventures")
(render :list (your-adventures page))))