Skip to content

Commit

Permalink
Merge pull request clj-commons#31 from sw1nn/patch-1
Browse files Browse the repository at this point in the history
Fix missing parens
  • Loading branch information
hugoduncan committed Mar 17, 2016
2 parents 030c041 + e3e7e29 commit 1969441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The `clj-ssh.ssh` namespace should be used for SSH from functional code.
(with-connection session
(let [result (ssh session {:in "echo hello"})]
(println (result :out)))
(let [result (ssh session {:cmd "ls"}]
(let [result (ssh session {:cmd "ls"})]
(println (second result)))))))
```

Expand Down

0 comments on commit 1969441

Please sign in to comment.