From b501002769db2ee88cc13ad3d9e8e09a448d9d62 Mon Sep 17 00:00:00 2001 From: Syohei YOSHIDA Date: Thu, 24 Sep 2015 22:59:56 +0900 Subject: Remove duplicate documentation --- README.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/README.md b/README.md index 96b3e88..9a3766c 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,6 @@ Or you can just dump `s.el` in your load path somewhere. * [s-concat](#s-concat-rest-strings) `(&rest strings)` * [s-prepend](#s-prepend-prefix-s) `(prefix s)` * [s-append](#s-append-suffix-s) `(suffix s)` -* [s-wrap](#s-wrap-s-prefix-optional-suffix) `(s prefix &optional suffix)` ### To and from lists @@ -310,21 +309,6 @@ Concatenate `s` and `suffix`. (s-append "abc" "def") ;; => "defabc" ``` -### s-wrap `(s prefix &optional suffix)` - -Wrap string `s` with `prefix` and optionally `suffix`. - -Return string `s` with `prefix` prepended. If `suffix` is present, it -is appended, otherwise `prefix` is used as both prefix and -suffix. - -```cl -(s-wrap "[" "]" "foobar") ;; => "[foobar]" -(s-wrap "(" "" "foobar") ;; => "(foobar" -(s-wrap "" ")" "foobar") ;; => "foobar)" -``` - - ### s-lines `(s)` Splits `s` into a list of strings on newline characters. -- cgit v1.2.3