mirror of
https://github.com/janet-lang/janet
synced 2026-04-24 07:41:27 +00:00
Fix defn docstring typo.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
###
|
||||
|
||||
(def defn :macro
|
||||
"(def name & more)\n\nDefine a function. Equivalent to (def name (fn name [args] ...))."
|
||||
"(defn name & more)\n\nDefine a function. Equivalent to (def name (fn name [args] ...))."
|
||||
(fn defn [name & more]
|
||||
(def len (length more))
|
||||
(def modifiers @[])
|
||||
|
||||
Reference in New Issue
Block a user