From 3d0689e730d79ca7b94855a91b01b48d6edbf54e Mon Sep 17 00:00:00 2001 From: Matthew Wratt Date: Thu, 4 Apr 2024 16:37:56 +1300 Subject: [PATCH] Improve comments --- src/types/api/credentials-exchange.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/api/credentials-exchange.d.ts b/src/types/api/credentials-exchange.d.ts index 5795f07..c930434 100644 --- a/src/types/api/credentials-exchange.d.ts +++ b/src/types/api/credentials-exchange.d.ts @@ -2,11 +2,11 @@ import { Cache } from "./cache"; export interface CredentialsExchange { /** - * Modify the user's login access, such as by rejecting the login attempt. + * Modify the access, such as by rejecting the exchange attempt. */ readonly access: { /** - * Mark the current login attempt as denied. This will prevent the end-user from completing the login flow. This will NOT cancel other user-related side effects (such as metadata changes) requested by this Action. The login flow will immediately stop following the completion of this action and no further Actions will be executed. + * Mark the current exchange attempt as denied. This will prevent the initiating party from completing the exchange flow. */ deny(code: string, reason: string): CredentialsExchange; };