diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-08-23 20:05:27 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-08-23 20:05:27 -0400 |
| commit | 83d2b4b643b780a7d7e1cfb191a0b604c99fd91a (patch) | |
| tree | 8108466674934410605f8191536bdfd33604c7e7 /src/utils.clj | |
| parent | de21bc98b04e8eb55b9a0448cda311f6c52f89f6 (diff) | |
Fix if-vip documentation typo
Diffstat (limited to 'src/utils.clj')
| -rwxr-xr-x | src/utils.clj | 2 |
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))) |
