summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2013-07-25 14:40:22 +0300
committerBozhidar Batsov <bozhidar@tradeo.com>2013-07-25 14:40:32 +0300
commit47013a410bd042e7d7552773b3cb56e175b96c5c (patch)
tree942ddda936a514c19dcfcd60e879512a1f988ed2 /README.md
parent6836609ca8f31aeea193cc6ff334d87980038d5e (diff)
Replace when not with unless
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 36b352da..2ca93b7d 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ And then you can install nREPL with the following command:
or by adding this bit of Emacs Lisp code to your Emacs initialization file(`.emacs` or `init.el`):
```lisp
-(when (not (package-installed-p 'nrepl))
+(unless (package-installed-p 'nrepl))
(package-install 'nrepl))
```