summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2010-08-23 20:05:27 -0400
committerScott Ostler <scottbot9000@gmail.com>2010-08-23 20:05:27 -0400
commit83d2b4b643b780a7d7e1cfb191a0b604c99fd91a (patch)
tree8108466674934410605f8191536bdfd33604c7e7 /src
parentde21bc98b04e8eb55b9a0448cda311f6c52f89f6 (diff)
Fix if-vip documentation typo
Diffstat (limited to 'src')
-rwxr-xr-xsrc/utils.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.clj b/src/utils.clj
index 1dc4a2c..44131df 100755
--- a/src/utils.clj
+++ b/src/utils.clj
@@ -304,7 +304,7 @@
(contains? super-vips (:nick session)))
(defmacro if-vip [e]
- "Evaluates expr if user is vip otherwise returns 404. Can only be used
+ "Evaluates expr if user is super-vip otherwise returns 404. Can only be used
where session is defined."
`(if (is-vip? ~'session) ~e (unknown-page)))