Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(server-renderer) fix typo in renderToWebStream error, and remove Cloudflare Worker reference #4249

Merged
merged 2 commits into from
Aug 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/server-renderer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function renderToWebStream(
**Usage**

```js
// e.g. inside a Cloudflare Worker
// e.g. inside an environment with ReadableStream support
return new Response(renderToWebStream(app))
```

Expand Down
2 changes: 1 addition & 1 deletion packages/server-renderer/src/renderToStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function renderToWebStream(
): ReadableStream {
if (!Ctor && !hasGlobalWebStream) {
throw new Error(
`ReadableStream constructor is not avaialbe in the global scope and ` +
`ReadableStream constructor is not available in the global scope and ` +
`must be explicitly passed in as the 3rd argument:\n\n` +
` import { ReadableStream } from 'stream/web'\n` +
` const stream = renderToWebStream(app, {}, ReadableStream)`
Expand Down