Fix typo in macro docs (#3144)

This commit is contained in:
Mike Roelens
2023-05-31 21:15:49 -04:00
committed by GitHub
parent 4c01454376
commit a7c7128cd7

View File

@@ -94,7 +94,7 @@ export async function getText() {
}
```
The transpiler implements specicial logic for serializing common data formats like `Response`, `Blob`, `TypedArray`.
The transpiler implements special logic for serializing common data formats like `Response`, `Blob`, `TypedArray`.
- `TypedArray`: Resolves to a base64-encoded string.
- `Response`: Bun will read the `Content-Type` and serialize accordingly; for instance, a `Response` with type `application/json` will be automatically parsed into an object and `text/plain` will be inlined as a string. Responses with an unrecognized or `undefined` `type` will be base-64 encoded.