From 4cf092d6e503603bc559d67c7ec8b3c0235a8cff Mon Sep 17 00:00:00 2001 From: Grant <14.gsmith.14@gmail.com> Date: Fri, 27 Dec 2024 14:10:35 -0600 Subject: [PATCH] doc: small typo fixes while onboarding (#1591) --- packages/client/src/base-client.ts | 4 ++-- packages/cloud/src/cloud-operations-client.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/client/src/base-client.ts b/packages/client/src/base-client.ts index 5f8e6f5f2..dd6ef3a14 100644 --- a/packages/client/src/base-client.ts +++ b/packages/client/src/base-client.ts @@ -55,8 +55,8 @@ export class BaseClient { /** * The underlying {@link Connection | connection} used by this client. * - * Clients are cheap to create, but connections are expensive. Where that make sense, - * a single connection may and should be reused by multiple `Client`. + * Clients are cheap to create, but connections are expensive. Where it makes sense, + * a single connection may and should be reused by multiple `Client`s. */ public readonly connection: ConnectionLike; diff --git a/packages/cloud/src/cloud-operations-client.ts b/packages/cloud/src/cloud-operations-client.ts index b412dd199..e658af177 100644 --- a/packages/cloud/src/cloud-operations-client.ts +++ b/packages/cloud/src/cloud-operations-client.ts @@ -43,8 +43,8 @@ export class CloudOperationsClient { /** * The underlying {@link CloudOperationsConnection | connection} used by this client. * - * Clients are cheap to create, but connections are expensive. Where that make sense, - * a single connection may and should be reused by multiple `CloudOperationsClient`. + * Clients are cheap to create, but connections are expensive. Where it makes sense, + * a single connection may and should be reused by multiple `CloudOperationsClient`s. */ public readonly connection: CloudOperationsConnection; public readonly options: Readonly;