From 3c77144ecb059411441730bb47f6d5892b62d13d Mon Sep 17 00:00:00 2001 From: stardiviner Date: Thu, 27 May 2021 21:55:35 +0800 Subject: [PATCH] Fix typo spelling --- ob-spice.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ob-spice.el b/ob-spice.el index c0ec10c..e8ea87a 100644 --- a/ob-spice.el +++ b/ob-spice.el @@ -58,7 +58,7 @@ (progn ;loop through the words (if (string-match "\\$\\(.*\\)\\[\\(.*\\)\\]" word) (progn - ;; if matchs a vector variable format + ;; if matches a vector variable format (setq varname (match-string 1 word)) (setq varindex (match-string 2 word)) ;; search varname in vars and use the value of varindex to word @@ -75,7 +75,7 @@ ) ; end of (if (string-match "\\$\\(.*\\)\\[\\(.*\\)\\]" word)) (if (string-match "\\$\\(.*\\)\\." word) ; if variable has a dot in the end (progn - ;; if matchs a non-vector variable format + ;; if matches a non-vector variable format (setq varname (match-string 1 word)) (setq newword (assoc-default varname vars @@ -92,7 +92,7 @@ );; end of (if (string-match "\\$\\(.*\\)\\." word) (if (string-match "\\$\\(.*\\)" word) (progn - ;; if matchs a non-vector variable format + ;; if matches a non-vector variable format (setq varname (match-string 1 word)) (setq newword (assoc-default varname vars -- 2.11.4.GIT