Skip to content

Commit 159ece5

Browse files
committed
Drop em-dashes from new comments
1 parent 293f45f commit 159ece5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/core/sdk/src/oauth-register-dynamic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ describe("oauth.registerDynamicClient", () => {
623623
);
624624

625625
// Regression: Mercury's authorization server vets `client_name` and rejects
626-
// any value containing its own brand with `invalid_client_metadata` which
626+
// any value containing its own brand with `invalid_client_metadata`, which
627627
// the auto-generated "Executor for Mercury MCP" always trips. The name is
628628
// cosmetic, so registration must retry once with the bare product name
629629
// instead of failing the connect.

packages/core/sdk/src/oauth-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -899,11 +899,11 @@ export const makeOAuthService = (deps: OAuthServiceDeps): OAuthService => {
899899
);
900900
const information = yield* registerWithName(input.clientName).pipe(
901901
// Some authorization servers vet `client_name` (Mercury rejects any
902-
// name containing its own brand which the auto-generated
902+
// name containing its own brand, which the auto-generated
903903
// "Executor for <integration>" always trips). The name is cosmetic,
904904
// so on `invalid_client_metadata` retry ONCE with the bare product
905905
// name before surfacing the failure. Other metadata rejections reuse
906-
// the same RFC error code, so the retry may be a wasted request but
906+
// the same RFC error code, so the retry may be a wasted request, but
907907
// never masks the original failure: if the retry also fails, ITS
908908
// error surfaces (same code, server-authored description).
909909
Effect.catchIf(

0 commit comments

Comments
 (0)