diff --git a/docs/Account.md b/docs/Account.md index 6e89f2a9e..e96381c1c 100644 --- a/docs/Account.md +++ b/docs/Account.md @@ -392,7 +392,7 @@ Order is reduce-only ## cancelReason -If order was canceled, the reason for canncellation +If order was canceled, the reason for cancellation # SubaccountOrderResources @@ -417,4 +417,4 @@ Localization string key to display the status ## timeInForceStringKey -Localization string key to display the timeInForce \ No newline at end of file +Localization string key to display the timeInForce diff --git a/docs/AppStateMachine.md b/docs/AppStateMachine.md index 5aab47778..00c087b0a 100644 --- a/docs/AppStateMachine.md +++ b/docs/AppStateMachine.md @@ -11,7 +11,7 @@ Abacus supports both v3 and v4 environments, including production and testing en let selections = appStateMachine.availableEnvironments() selections returns an array of SelectionOption, which contains a value and a stringKey -FE apps should display a picker display the localized stringKey value. When user makes the selction, call +FE apps should display a picker display the localized stringKey value. When user makes the selection, call let response = appStateMachine.setEnvironment(environment) FE apps should handle the response, which has a type of [AppStateResponse](AppStateResponse.md) diff --git a/docs/AppStateResponse.md b/docs/AppStateResponse.md index 30adfeb2d..b17c81d6e 100644 --- a/docs/AppStateResponse.md +++ b/docs/AppStateResponse.md @@ -28,7 +28,7 @@ Note, state is immutable. When data changes, a new object is created. So you can This applies to all child objects too. -For example, state has a wallet object. A market update may changes the marketsSummary object, but not the wallet object. In this case, you can check the pointer and update markets UI only, but not portfolio. +For example, state has a wallet object. A market update may changes the marketsSummary object, but not the wallet object. In this case, you can check the pointer and update markets UI only, but not the portfolio. # changes