From 8e76f78874306cfa72d2c79c90033a57d62dc66a Mon Sep 17 00:00:00 2001 From: "www.getcontented.com.au" Date: Sun, 23 Aug 2015 23:47:51 +1000 Subject: [PATCH] Fix issue where readme syntax is incorrect. Resolves issue https://github.com/noprompt/shodan/issues/7 The function syntax of time-end includes the string identifier, but the example on the readme doesn't --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f85e4c..e400829 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Wrappers for `console.profile(title)` and `console.profileEnd()`. ys)) ;; js/console.profileEnd -(console/profile-end) +(console/profile-end "Accessing the primary data loop") ``` ### Timing @@ -84,7 +84,7 @@ Wrappers for `console.time()` and `console.timeEnd()`. ```clj (console/time-start "Addition") (+ 1 1) -(console/time-end) +(console/time-end "Addition") ``` ## Macros