Skip to content

Commit

Permalink
chore: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Oct 11, 2023
1 parent 16b9d40 commit 86f2812
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)_.
Expand Down
4 changes: 2 additions & 2 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 86f2812

Please sign in to comment.