From 05dec7aea4118829ec327dc25277f7f9b17d14ec Mon Sep 17 00:00:00 2001 From: Magnar Sveen Date: Sat, 20 Oct 2012 08:40:43 +0200 Subject: [PATCH] Fix example. --- README.md | 4 ++-- readme-template.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9007dde..55b33d0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # bang.el [![Build Status](https://secure.travis-ci.org/magnars/bang.el.png)](http://travis-ci.org/magnars/bang.el) -The startings of a modern list api for Emacs that does not require 'cl. +The startings of a modern list api for Emacs. No 'cl required. ## Installation @@ -50,7 +50,7 @@ of course the original can also be written like ```cl (defun even? (num) (= 0 (% num 2))) -(!filter even? '(1 2 3 4)) +(!filter 'even? '(1 2 3 4)) ``` which demonstrates the usefulness of both versions. diff --git a/readme-template.md b/readme-template.md index c86c68b..a3bc354 100644 --- a/readme-template.md +++ b/readme-template.md @@ -1,6 +1,6 @@ # bang.el [![Build Status](https://secure.travis-ci.org/magnars/bang.el.png)](http://travis-ci.org/magnars/bang.el) -The startings of a modern list api for Emacs that does not require 'cl. +The startings of a modern list api for Emacs. No 'cl required. ## Installation @@ -34,7 +34,7 @@ of course the original can also be written like ```cl (defun even? (num) (= 0 (% num 2))) -(!filter even? '(1 2 3 4)) +(!filter 'even? '(1 2 3 4)) ``` which demonstrates the usefulness of both versions.