Fix typo: Conditioanl

s/Conditioanl/Conditional/; #6
This commit is contained in:
John BEPPU
2020-08-12 10:57:14 -07:00
parent 8128fce356
commit 995a6405ef
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ If you only use the [public endpoints](#public-endpoints) you can omit key and s
#### async placeConditionalOrder(params)
[See bybit documentation](https://bybit-exchange.github.io/docs/inverse/#t-placecond)
#### async getConditioanlOrder(params)
#### async getConditionalOrder(params)
[See bybit documentation](https://bybit-exchange.github.io/docs/inverse/#t-getcond)
#### async cancelConditionalOrder(params)

View File

@@ -72,7 +72,7 @@ module.exports = class RestClient {
return await this.request.post('open-api/stop-order/create', params);
}
async getConditioanlOrder(params) {
async getConditionalOrder(params) {
return await this.request.get('open-api/stop-order/list', params);
}