Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Commit 3899a21

Browse files
committed
Fixed typo in documentation: enviroment -> environment
1 parent 801bf2b commit 3899a21

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Now instantiate the client like this:
4040
from TSIClient import TSIClient as tsi
4141

4242
client = tsi.TSIClient(
43-
enviroment="<your-tsi-env-name>",
43+
environment="<your-tsi-env-name>",
4444
applicationName="<your-app-name>"
4545
)
4646
````

docs/source/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ the `applicationName` and `environment` arguments:
4545
4646
>>> from TSIClient import TSIClient as tsi
4747
>>> client = tsi.TSIClient(
48-
... enviroment="<your-tsi-env-name>",
48+
... environment="<your-tsi-env-name>",
4949
... applicationName="<your-app-name>",
5050
... api_version="2020-07-31"
5151
... )
@@ -67,7 +67,7 @@ multiple TSI environments, you need to create multiple instances of the TSIClien
6767
6868
>>> from TSIClient import TSIClient as tsi
6969
>>> client = tsi.TSIClient(
70-
... enviroment="<your-tsi-env-name>",
70+
... environment="<your-tsi-env-name>",
7171
... client_id="<your-client-id>",
7272
... client_secret="<your-client-secret>",
7373
... tenant_id="<your-tenant-id>",

0 commit comments

Comments
 (0)