summaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorNic Ferier <nic@ferrier.me.uk>2013-05-09 13:52:47 +0100
committerNic Ferier <nic@ferrier.me.uk>2013-05-09 13:52:47 +0100
commitb3a79dd1c255731e0680686449c6615baa06c5c6 (patch)
treecbc1d3197168cb41b254facb0b2797508f63c76c /dev
parentccf6fa69b5b5f62dc7da11dc8d85f00c30170959 (diff)
changes to #30 and #29 to make it ready to commit
Diffstat (limited to 'dev')
-rw-r--r--dev/examples.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/examples.el b/dev/examples.el
index 2d93b7b..c5c2528 100644
--- a/dev/examples.el
+++ b/dev/examples.el
@@ -118,8 +118,8 @@
(s-match "abc" "abcdef" 1) => nil
(s-match "abc" "abcdefabc" 2) => '("abc"))
- (defexamples s-all-match-strings
- (s-all-match-strings
+ (defexamples s-match-strings-all
+ (s-match-strings-all
"{\\([^}]+\\)}" "x is {x} and y is {y}") => '(("{x}" "x")("{y}" "y")))
(defexamples s-slice-at