Skip to content

Commit e2d2162

Browse files
committed
Update docs
1 parent df5ccbc commit e2d2162

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/coinbase-pro-clj.core.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<pre><code class="clojure">{:url
55
:key ; optional
66
:secret ; optional
7-
:passphrase ; optional}
7+
:passphrase} ; optional
88
</code></pre>
99
<ul>
1010
<li><code>key</code>, <code>secret</code>, and <code>passphrase</code> are only required if the request is authenticated. These values can be created in the <a href="https://pro.coinbase.com/profile/api">API settings</a> of your Coinbase Pro account. <strong>Remember not to store these values in an online repository as this will give others access to your account. You could use something like <a href="https://github.com/weavejester/environ">environ</a> to store these values locally outside of your code.</strong></li>
@@ -25,7 +25,7 @@
2525
:on-connect ; optional
2626
:on-receive ; optional
2727
:on-close ; optional
28-
:on-error ; optional}
28+
:on-error} ; optional
2929
</code></pre></li>
3030
<li><code>key</code>, <code>secret</code>, and <code>passphrase</code> are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.</li>
3131
<li><code>channels</code> is a vector of channel names (strings) . If no channels are passed, the “heartbeat” channel is subscribed to.</li>
@@ -94,7 +94,7 @@
9494
:channels ; optional
9595
:key ; optional
9696
:secret ; optional
97-
:passphrase ; optional}
97+
:passphrase} ; optional
9898
</code></pre></li>
9999
<li><code>key</code>, <code>secret</code>, and <code>passphrase</code> are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.</li>
100100
<li><code>channels</code> is a vector of channel names (strings). If no channels are passed, the “heartbeat” channel is subscribed to.</li>

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<pre><code class="clojure">{:url
55
:key ; optional
66
:secret ; optional
7-
:passphrase ; optional}
7+
:passphrase} ; optional
88
</code></pre>
99
<ul>
1010
<li><code>key</code>, <code>secret</code>, and <code>passphrase</code> are only required if the request is authenticated. These values can be created in the <a href="https://pro.coinbase.com/profile/api">API settings</a> of your Coinbase Pro account. <strong>Remember not to store these values in an online repository as this will give others access to your account. You could use something like <a href="https://github.com/weavejester/environ">environ</a> to store these values locally outside of your code.</strong></li>

src/coinbase_pro_clj/core.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{:url
55
:key ; optional
66
:secret ; optional
7-
:passphrase ; optional}
7+
:passphrase} ; optional
88
```
99
- `key`, `secret`, and `passphrase` are only required if the request is authenticated. These values can be created in the [API settings](https://pro.coinbase.com/profile/api) of your Coinbase Pro account.
1010
**Remember not to store these values in an online repository as this will give others access to your account. You could use something like [environ](https://github.com/weavejester/environ)
@@ -398,7 +398,7 @@ Opts must contain either `:order_id` or `:product_id`.
398398
:channels ; optional
399399
:key ; optional
400400
:secret ; optional
401-
:passphrase ; optional}
401+
:passphrase} ; optional
402402
```
403403
- `key`, `secret`, and `passphrase` are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.
404404
- `channels` is a vector of channel names (strings). If no channels are passed, the \"heartbeat\" channel is subscribed to.
@@ -457,7 +457,7 @@ Opts must contain either `:order_id` or `:product_id`.
457457
:on-connect ; optional
458458
:on-receive ; optional
459459
:on-close ; optional
460-
:on-error ; optional}
460+
:on-error} ; optional
461461
```
462462
- `key`, `secret`, and `passphrase` are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.
463463
- `channels` is a vector of channel names (strings) . If no channels are passed, the \"heartbeat\" channel is subscribed to.

0 commit comments

Comments
 (0)