diff --git a/README.md b/README.md index 02246336..a7357fd2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ https://user-images.githubusercontent.com/704302/216504942-09ed8dd7-7f44-40a6-a5 ## Documentation -The API documentation can be found at [https://docs.moderntreasury.com](https://docs.moderntreasury.com). +The API documentation can be found [here](https://docs.moderntreasury.com). ## Installation @@ -585,7 +585,7 @@ dt = datetime(...) ## Versioning -This package generally attempts to follow [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: +This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: 1. Changes that only affect static types, without breaking runtime behavior. 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_. diff --git a/tests/test_client.py b/tests/test_client.py index a7b7f94f..3ef2bf86 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -64,7 +64,7 @@ def test_copy(self) -> None: assert copied.organization_id == "my-organization-ID" def test_copy_default_options(self) -> None: - # options that have a default are overriden correctly + # options that have a default are overridden correctly copied = self.client.copy(max_retries=7) assert copied.max_retries == 7 assert self.client.max_retries == 2 @@ -766,7 +766,7 @@ def test_copy(self) -> None: assert copied.organization_id == "my-organization-ID" def test_copy_default_options(self) -> None: - # options that have a default are overriden correctly + # options that have a default are overridden correctly copied = self.client.copy(max_retries=7) assert copied.max_retries == 7 assert self.client.max_retries == 2