diff options
Diffstat (limited to 'functions.lisp')
-rw-r--r-- | functions.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.lisp b/functions.lisp index 8296f87..aeccbb3 100644 --- a/functions.lisp +++ b/functions.lisp @@ -2,7 +2,7 @@ (in-package #:lambda-riffs) -(defun -> (arg &rest fns) +(defun threading> (arg &rest fns) (dolist (fn fns arg) (setf arg (funcall fn arg)))) |