summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2013-08-13 22:48:25 -0700
committerBozhidar Batsov <bozhidar@batsov.com>2013-08-13 22:48:25 -0700
commita383a160b1e5de95d42fe9d06dca2667de859d84 (patch)
tree2a683dc6978fadc5937f19823a36a58478450464
parent14670c3d36e166c58dffc737d62ccb49985f021c (diff)
parent859a539757ca9811709d934f68cc3cf3afac2717 (diff)
Merge pull request #358 from bmabey/patch-1
removes extra paren in README example install code
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b2aaecc1..9682cd1e 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
-(unless (package-installed-p 'nrepl))
+(unless (package-installed-p 'nrepl)
(package-install 'nrepl))
```