Skip to content

Commit bb3afa6

Browse files
committed
Fix typo in readme
1 parent 47be5ad commit bb3afa6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following short example should give you what you need to get started:
2727
(defn divide [x y]
2828
(log/info "dividing" x "by" y)
2929
(try
30-
(log/spyf "result: %s" (/ x y)) ; yields the result
30+
(log/spyf "result is %s" (/ x y)) ; yields the result
3131
(catch Exception ex
3232
(log/error ex "There was an error in calculation"))))
3333
```

0 commit comments

Comments
 (0)