We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2279864 commit f1941abCopy full SHA for f1941ab
README.md
@@ -200,10 +200,10 @@ The previous day?
200
=> #object[java.time.LocalDate "2015-09-28"]
201
```
202
203
-Three next days?
+Three days starting at `now`?
204
205
```clj
206
-(take 3 (iterate plus now (days 1)))
+(take 3 (iterate plus now (days 1))) ;; note `java-time/iterate`
207
=> (#object[java.time.LocalDate "2015-09-28"]
208
#object[java.time.LocalDate "2015-09-29"]
209
#object[java.time.LocalDate "2015-09-30"])
0 commit comments