Fix typos

This commit is contained in:
Aleksandr Kraiz
2022-05-10 12:11:58 +04:00
parent 883bcf928f
commit 81e96def62

View File

@@ -188,7 +188,7 @@ const swapInfo = await simpleFetch(orionUnit.orionAggregator.getSwapInfo)(
```ts
import { simpleFetch } from "@orionprotocol/sdk";
// You can yse simpleFetch or "default" (vebose) fetch
// You can use simpleFetch or "default" (verbose) fetch
// Simple fetch
const { orderId } = await simpleFetch(orionUnit.orionAggregator.placeOrder)(
@@ -234,7 +234,7 @@ if (placeOrderFetchResult.isErr()) {
// see src/fetchWithValidation.ts for details
}
} else {
// Succes result
// Success result
const { orderId } = placeOrderFetchResult.value;
}
```