diff options
Diffstat (limited to 'macros.fnl')
| -rw-r--r-- | macros.fnl | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -409,10 +409,10 @@ returns the value without additional metadata. (and res (> n 1))))) (fn demethodize [s] - (-> s - tostring - (string.gsub ":" ".") - sym)) + (let [s (-> s + tostring + (string.gsub ":" "."))] + (sym s))) (fn fn* [name doc? ...] "Create (anonymous) function of fixed arity. |