Skip to content

Commit 8607b04

Browse files
exchanges: fix typo
Signed-off-by: Philemon Ukane <[email protected]>
1 parent 4590915 commit 8607b04

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

exchanges/exchanges.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3348,7 +3348,7 @@ type KucoinPriceResponse struct {
33483348
VolValue string `json:"volValue"`
33493349
Last string `json:"last"`
33503350

3351-
// These are unsed fields, but left commented since they are part of the original schema.
3351+
// These are unused fields, but left commented since they are part of the original schema.
33523352
// Sequence string `json:"sequence"`
33533353
// Buy string `json:"buy"`
33543354
// Sell string `json:"sell"`
@@ -3461,7 +3461,7 @@ func (r KucoinCandlestickResponse) translate() Candlesticks {
34613461
type KucoinDepthResponse struct {
34623462
// Code string `json:"code"`
34633463
Data struct {
3464-
// These are unsed fields, but left commented since they are part of the original schema.
3464+
// These are unused fields, but left commented since they are part of the original schema.
34653465
// Time int64 `json:"time"` used
34663466
// Sequence string `json:"sequence"` used
34673467
Bids [][2]string
@@ -3598,7 +3598,7 @@ type CoinExPriceResponse struct {
35983598
Value string `json:"value"`
35993599
Volume string `json:"volume"`
36003600

3601-
// These are unsed fields, but left commented since they are part of the
3601+
// These are unused fields, but left commented since they are part of the
36023602
// original schema.
36033603
// Market string `json:"market"`
36043604
// Period int64 `json:"period"`
@@ -3636,7 +3636,7 @@ type CoinExCandlestickResponse struct {
36363636
Open string `json:"open"`
36373637
Volume string `json:"volume"`
36383638

3639-
// These are unsed fields, but left commented since they are part of the
3639+
// These are unused fields, but left commented since they are part of the
36403640
// original schema.
36413641
// Market string `json:"market"`
36423642
// Value string `json:"value"`
@@ -3694,14 +3694,14 @@ type CoinExDepthResponse struct {
36943694
Asks [][2]string `json:"asks"`
36953695
} `json:"depth"`
36963696

3697-
// These are unsed fields, but left commented since they are part of the
3697+
// These are unused fields, but left commented since they are part of the
36983698
// original schema.
36993699
// Last string `json:"last"`
37003700
// UpdatedAt int64 `json:"updated_at"`
37013701
// Checksum string `json:"checksum"`
37023702
} `json:"data"`
37033703

3704-
// These are unsed fields, but left commented since they are part of the
3704+
// These are unused fields, but left commented since they are part of the
37053705
// original schema.
37063706
// IsFull bool `json:"is_full"`
37073707
// Market string `json:"market"`

0 commit comments

Comments
 (0)