Skip to content

Commit 86841a0

Browse files
stainless-botRobertCraigie
authored andcommitted
chore: update README
1 parent 633f939 commit 86841a0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and offers both synchronous and asynchronous clients powered by [httpx](https://
88

99
## Documentation
1010

11-
The API documentation can be found at [https://platform.openai.com/docs](https://platform.openai.com/docs).
11+
The API documentation can be found [here](https://platform.openai.com/docs).
1212

1313
## Installation
1414

@@ -419,7 +419,7 @@ By default the library closes underlying HTTP connections whenever the client is
419419

420420
## Versioning
421421

422-
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:
422+
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:
423423

424424
1. Changes that only affect static types, without breaking runtime behavior.
425425
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)_.

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_copy(self) -> None:
5555
assert self.client.api_key == api_key
5656

5757
def test_copy_default_options(self) -> None:
58-
# options that have a default are overriden correctly
58+
# options that have a default are overridden correctly
5959
copied = self.client.copy(max_retries=7)
6060
assert copied.max_retries == 7
6161
assert self.client.max_retries == 2
@@ -536,7 +536,7 @@ def test_copy(self) -> None:
536536
assert self.client.api_key == api_key
537537

538538
def test_copy_default_options(self) -> None:
539-
# options that have a default are overriden correctly
539+
# options that have a default are overridden correctly
540540
copied = self.client.copy(max_retries=7)
541541
assert copied.max_retries == 7
542542
assert self.client.max_retries == 2

0 commit comments

Comments
 (0)