From ca9cb13ba1f6c859c0c8f1b9e213619b9bb37551 Mon Sep 17 00:00:00 2001 From: k8o <61353435+k35o@users.noreply.github.com> Date: Fri, 12 Apr 2024 05:36:46 +0900 Subject: [PATCH] Fix typo in `HttpResponse` docs (#958) Co-authored-by: Steven Yuan --- .changeset/chilly-flies-double.md | 2 ++ packages/types/src/http.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .changeset/chilly-flies-double.md diff --git a/.changeset/chilly-flies-double.md b/.changeset/chilly-flies-double.md new file mode 100644 index 00000000000..a845151cc84 --- /dev/null +++ b/.changeset/chilly-flies-double.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/packages/types/src/http.ts b/packages/types/src/http.ts index 7689e772241..c01279b54aa 100644 --- a/packages/types/src/http.ts +++ b/packages/types/src/http.ts @@ -38,7 +38,7 @@ export interface HttpResponse extends HttpMessage { * @public * * Represents an HTTP message with headers and an optional static or streaming - * body. bode: ArrayBuffer | ArrayBufferView | string | Uint8Array | Readable | ReadableStream; + * body. body: ArrayBuffer | ArrayBufferView | string | Uint8Array | Readable | ReadableStream; */ export interface HttpMessage { headers: HeaderBag;