From e50eb791b2dc6ee69b89d7c477a2d8aa806f9aa7 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 28 Nov 2015 11:39:49 -0600 Subject: [PATCH] Specify the code block as clojure. --- clojure/argument-requirements-for-a-function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clojure/argument-requirements-for-a-function.md b/clojure/argument-requirements-for-a-function.md index cddcd42..c90b725 100644 --- a/clojure/argument-requirements-for-a-function.md +++ b/clojure/argument-requirements-for-a-function.md @@ -6,7 +6,7 @@ lists are stored as metadata for the function. So, if you are trying to figure out what arity a function is or what variations of arguments it takes, you can check the metadata like so: -``` +```clojure > (:arglists (meta #'str)) ([] [x] [x & ys]) ```