Skip to content

Commit 012281f

Browse files
committed
Fix typo in README
1 parent 4e5a302 commit 012281f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ An example structure of the dictionary is outlined below.
8080
```python
8181
{
8282
'BTC/USD': {
83-
'bids': [[11111, 1.7], ...] # [price, amount] sorted by price in descending order (best bid first).
84-
'asks': [[11112, 3], ...] # [price, amount] sorted by price in ascending order (best ask first).
83+
'bids': [[11111, 1.7], ...], # [price, amount] sorted by price in descending order (best bid first).
84+
'asks': [[11112, 3], ...], # [price, amount] sorted by price in ascending order (best ask first).
8585
'timestamp': 1596729013, # Unix timestamp for when the book was last updated.
8686
'datetime': '2020-08-06T15:50:56.714Z', # iso860 datetime. Computed from the timestamp property.
8787
'nonce': 109335233, # Exchange-provided nonce. None if not provided.

0 commit comments

Comments
 (0)