From 8dd295599c3b21dee98e09c59f20b71f6dfc2caa Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 12 Oct 2023 00:24:56 +0000 Subject: [PATCH] chore: update README --- README.md | 4 ++-- tests/test_client.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 97e0f92d6..286f899a2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ and offers both synchronous and asynchronous clients powered by [httpx](https:// ## Documentation -The API documentation can be found at [https://increase.com/documentation](https://increase.com/documentation). +The API documentation can be found [here](https://increase.com/documentation). ## Installation @@ -321,7 +321,7 @@ By default the library closes underlying HTTP connections whenever the client is ## 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 afbdb51f8..3fd38b1d2 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -55,7 +55,7 @@ def test_copy(self) -> None: assert self.client.api_key == api_key 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 @@ -673,7 +673,7 @@ def test_copy(self) -> None: assert self.client.api_key == api_key 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