From 829277e7b65adc40360aeb5c41cf46228e30b3a1 Mon Sep 17 00:00:00 2001 From: Alex Robinson Date: Tue, 12 Sep 2023 16:56:49 -0500 Subject: [PATCH] fixup! Add missing types --- types/defines/hyperdrive.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/defines/hyperdrive.d.ts b/types/defines/hyperdrive.d.ts index e2ed6b9758c0..8bb22d7ecd19 100644 --- a/types/defines/hyperdrive.d.ts +++ b/types/defines/hyperdrive.d.ts @@ -25,7 +25,7 @@ interface Hyperdrive { /* * A randomly generated hostname that is only valid within the context of the - * currently running worker which, when passed into `connect()` function from + * currently running Worker which, when passed into `connect()` function from * the "cloudflare:sockets" module, will connect to the Hyperdrive instance * for your database. */ @@ -42,7 +42,7 @@ interface Hyperdrive { /* * The randomly generated password to use when authenticating to your * database via Hyperdrive. Like the host field, this password is only valid - * within the context of the currently running worker instance from which + * within the context of the currently running Worker instance from which * it's read. */ readonly password: string;