From 55676284a2772ef4c24ff7f70d4fd8b8cedbe00f Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Tue, 28 May 2024 08:14:29 -0400 Subject: [PATCH] Add param doc --- libs/common/src/platform/abstractions/crypto.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/platform/abstractions/crypto.service.ts b/libs/common/src/platform/abstractions/crypto.service.ts index e3ea656284..9be4b95e07 100644 --- a/libs/common/src/platform/abstractions/crypto.service.ts +++ b/libs/common/src/platform/abstractions/crypto.service.ts @@ -38,7 +38,7 @@ export abstract class CryptoService { /** * Retrieves a stream of the given users {@see UserKey} values. Can emit null if the user does not have a user key, e.g. the user * is in a locked or logged out state. - * @param userId + * @param userId The user id of the user to get the {@see UserKey} for. */ abstract userKey$(userId: UserId): Observable; /**