summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-01-13 10:53:32 +0000
committerDaniel Santos <dacs.git@brilhante.top>2023-01-13 10:53:32 +0000
commit248dad4c85fa32a27890a738cf67d8ec8c845104 (patch)
tree3d8710f7c0efc6c24e213cb92041c0444fc5ac80
parentb637e1330eea8081df8193665c5d6df71e182b1e (diff)
downloadcl-math-248dad4c85fa32a27890a738cf67d8ec8c845104.tar.gz
rename explode-from-string to explode-string
-rw-r--r--plus-inc.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plus-inc.lisp b/plus-inc.lisp
index 9ad3173..4fb07bb 100644
--- a/plus-inc.lisp
+++ b/plus-inc.lisp
@@ -8,7 +8,7 @@
 	number
 	(reverse number)))
 
-(defun explode-from-string (string)
+(defun explode-string (string)
   "Given a string, it returns a list of the symbol of this string"
   (loop for letter across string collect (intern (string letter))))