Skip to content

Commit 1a73d3b

Browse files
committed
chore: replace html entity with character
1 parent e734f13 commit 1a73d3b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/languages/typescript/methodology-ts.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Runtime environments that are explicitly supported are:
8282
[deno-file-streaming](https://github.com/denoland/deno/issues/11018)
8383

8484
<Callout title="Note" type="info">
85-
For teams interested in working directly with the SDK&apos;s source files, our SDK
85+
For teams interested in working directly with the SDK's source files, our SDK
8686
leverages TypeScript `v5` features. To directly consume these source files,
8787
your environment should support TypeScript version 5 or higher. This
8888
requirement applies to scenarios where direct access to the source is
@@ -132,7 +132,7 @@ const result = await sdk.doTheThing({
132132
The TypeScript SDK generates a type for each request, response, and shared model in your OpenAPI schema. Each model is backed by a [Zod](https://zod.dev/) schema that validates the objects at runtime.
133133

134134
<Callout title="Note" type="info">
135-
It&apos;s important to note that data validation is run on user input when calling
135+
It's important to note that data validation is run on user input when calling
136136
an SDK method _and on the subsequent response data from the server_. If
137137
servers are not returning data that matches the OpenAPI spec, then validation
138138
errors are thrown at runtime.
@@ -187,9 +187,9 @@ All generated models have this overall structure. By pinning the types with runt
187187
</Spotlight>
188188

189189
<Callout title="Note" type="info">
190-
It&apos;s important to note that Zod is a peer dependency.
190+
It's important to note that Zod is a peer dependency.
191191

192-
The reason for listing Zod as a peer dependency is to use the user&apos;s installation of Zod if they have it. Every popular package manager, except for Yarn, says, &quot;If the user doesn&apos;t have a peer dependency installed, I&apos;m gonna go ahead and install it and make it available&quot;.
192+
The reason for listing Zod as a peer dependency is to use the user's installation of Zod if they have it. Every popular package manager, except for Yarn, says, &quot;If the user doesn't have a peer dependency installed, I'm gonna go ahead and install it and make it available&quot;.
193193

194194
Why does Speakeasy use peer dependencies? There are situations where the `node_modules` tree ends up with multiple Zod versions if the user has a different version of Zod installed than what the SDK requires. For example:
195195

0 commit comments

Comments
 (0)