1d3928ec556d
Fix typo
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Sat, 24 Oct 2020 15:55:36 -0400 |
parents | cacafa0cae85 |
children | 38a1fbc6688e |
branches/tags | (none) |
files | src/sequences.lisp |
Changes
--- a/src/sequences.lisp Sat Oct 24 15:39:36 2020 -0400 +++ b/src/sequences.lisp Sat Oct 24 15:55:36 2020 -0400 @@ -302,13 +302,13 @@ Examples: - (sum #(1 2 3)) + (summation #(1 2 3)) ; => 6 - (sum '(\"1\" \"2\" \"3\") :key #'parse-integer) + (summation '(\"1\" \"2\" \"3\") :key #'parse-integer) ; => 6 - (sum '(\"1\" \"2\" \"3\") :key #'length) + (summation '(\"1\" \"2\" \"3\") :key #'length) ; => 3 "