spellcheck: fix and update (#1359)

* spellcheck: fix and update

* spellcheck: add exclude line for gateio_types
This commit is contained in:
Ryan O'Hara-Reid
2023-10-03 16:07:03 +11:00
committed by GitHub
parent 7f0faf7850
commit ecf0a5bcb3
31 changed files with 42 additions and 40 deletions

View File

@@ -1215,7 +1215,7 @@ type MarginAccountItem struct {
Quote AccountBalanceInformation `json:"quote"`
}
// AccountBalanceInformation represents currency account balace information.
// AccountBalanceInformation represents currency account balance information.
type AccountBalanceInformation struct {
Available convert.StringToFloat64 `json:"available"`
Borrowed convert.StringToFloat64 `json:"borrowed"`

View File

@@ -820,7 +820,7 @@ func (g *Gateio) generatePayload(event string, channelsToSubscribe []stream.Chan
if channelsToSubscribe[i].Channel == "spot.book_ticker" {
// To get all orderbook assets subscribed it needs to be batched and
// only spot.book_ticker can be batched, if not it will take about
// half an hour for initital sync.
// half an hour for initial sync.
if batch != nil {
*batch = append(*batch, params...)
} else {