Skip to content

Commit feacaaa

Browse files
committed
change version in walkthrough
1 parent 6b7f723 commit feacaaa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/walkthrough.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To use core.async, declare a dependency on Clojure 1.10.0 or higher and the late
99
```clojure
1010
{:deps
1111
{org.clojure/clojure {:mvn/version "1.12.0"}
12-
org.clojure/core.async {:mvn/version "1.6.673"}}}
12+
org.clojure/core.async {:mvn/version "1.8.741"}}}
1313
```
1414

1515
To start working with core.async, require the `clojure.core.async` namespace at the REPL:
@@ -157,4 +157,4 @@ We can combine timeout with `alts!` to do timed channel waits. Here we wait for
157157
begin (System/currentTimeMillis)]
158158
(a/alts!! [c (a/timeout 100)])
159159
(println "Gave up after" (- (System/currentTimeMillis) begin)))
160-
```
160+
```

docs/walkthrough.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2><a href="#getting-started" id="getting-started"></a>Getting started</h2>
66
<p>To use core.async, declare a dependency on Clojure 1.10.0 or higher and the latest core.async library:</p>
77
<pre><code class="language-clojure">{:deps
88
{org.clojure/clojure {:mvn/version "1.12.0"}
9-
org.clojure/core.async {:mvn/version "1.6.673"}}}
9+
org.clojure/core.async {:mvn/version "1.8.741"}}}
1010
</code></pre>
1111
<p>To start working with core.async, require the <code>clojure.core.async</code> namespace at the REPL:</p>
1212
<pre><code class="language-clojure">(require '[clojure.core.async :as a :refer [&lt;!! &gt;!! &lt;! &gt;!]])

0 commit comments

Comments
 (0)