chore(internal): grammar fix (it's -> its)

This commit is contained in:
stainless-app[bot]
2025-11-03 16:14:27 +00:00
parent dae47f3166
commit 0406ffba33
2 changed files with 2 additions and 2 deletions

View File

@@ -354,7 +354,7 @@ custom := param.Override[openai.FooParams](12)
### Request unions
Unions are represented as a struct with fields prefixed by "Of" for each of it's variants,
Unions are represented as a struct with fields prefixed by "Of" for each of its variants,
only one field can be non-zero. The non-zero field will be serialized.
Sub-properties of the union can be accessed via methods on the union struct.

View File

@@ -5,7 +5,7 @@ package respjson
// Use [Field.Valid] to check if an optional value was null or omitted.
//
// A Field will always occur in the following structure, where it
// mirrors the original field in it's parent struct:
// mirrors the original field in its parent struct:
//
// type ExampleObject struct {
// Foo bool `json:"foo"`