docs: update more typing wordings

This commit is contained in:
Matthias
2024-11-15 07:18:41 +01:00
parent a6d513a0e6
commit 6d9ab5e9ff
4 changed files with 5 additions and 5 deletions

View File

@@ -329,7 +329,7 @@ After:
`order_time_in_force` attributes changed from `"buy"` to `"entry"` and `"sell"` to `"exit"`.
``` python
order_time_in_force: Dict = {
order_time_in_force: dict = {
"buy": "gtc",
"sell": "gtc",
}
@@ -338,7 +338,7 @@ After:
After:
``` python hl_lines="2 3"
order_time_in_force: Dict = {
order_time_in_force: dict = {
"entry": "GTC",
"exit": "GTC",
}