Skip to content

Commit 9639b53

Browse files
committed
tweak
1 parent d4078b9 commit 9639b53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/languages/typescript/oss-comparison-ts.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ async function run() {
11261126
run();
11271127
```
11281128

1129-
None of the other generators include pagination as a feature.
1129+
None of the other generators include pagination as a feature, leaving it all to the API client developers to figure out.
11301130

11311131
<Table
11321132
data={[
@@ -1149,9 +1149,9 @@ None of the other generators include pagination as a feature.
11491149

11501150
## JSON/Data Streaming
11511151

1152-
og node does a silly `if (produces.indexOf('application/json') >= 0) {` instead of actual content negotiation, which will trigger for application/jsonl but doesnt actually know how to support it.
1152+
{/* og node does a silly `if (produces.indexOf('application/json') >= 0) {` instead of actual content negotiation, which will trigger for application/jsonl but doesnt actually know how to support it. */}
11531153

1154-
All the generators in our comparison generate SDKs that use the `Fetch` API, which enables streaming for large uploads or downloads.
1154+
All the generators in our comparison generate SDKs that use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), which enables streaming for large uploads or downloads.
11551155

11561156
<Table
11571157
data={[
@@ -1206,7 +1206,7 @@ Here's how the generators add documentation:
12061206
]}
12071207
/>
12081208

1209-
Speakeasy generates a `README.md` at the root of the SDK, [which you can customize](/docs/sdk-docs/edit-readme) to add branding, support links, a code of conduct, and any other information your developer-users might find helpful.
1209+
Speakeasy generates a `README.md` generated at the root of the SDK, [which you can customize](/docs/sdk-docs/edit-readme) to add branding, support links, a code of conduct, and any other information your developer-users might find helpful.
12101210

12111211
The Speakeasy SDK also includes working usage examples for all operations, complete with imports and appropriately formatted string examples. For instance, if a type is formatted as `email` in our OpenAPI spec, Speakeasy generates usage examples with strings that look like email addresses. Types formatted as `uri` will generate examples that look like URLs. This makes example code clear and scannable.
12121212

0 commit comments

Comments
 (0)