From 7c32f682d45efc3b2c64804d11cb736b11e8d86e Mon Sep 17 00:00:00 2001 From: naskya Date: Thu, 6 Jun 2024 17:10:41 +0900 Subject: [PATCH] chore: update auto-generated file --- packages/backend-rs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend-rs/index.d.ts b/packages/backend-rs/index.d.ts index 2297322ec9..64ff701fc8 100644 --- a/packages/backend-rs/index.d.ts +++ b/packages/backend-rs/index.d.ts @@ -452,7 +452,7 @@ export function fromMastodonId(mastodonId: string): string | null * ``` */ export function nyaify(text: string, lang?: string | undefined | null): string -/** Hashes the given password using [Argon2] algorithm. */ +/** Hashes the given password using [argon2] algorithm. */ export function hashPassword(password: string): string /** Checks whether the given password and hash match. */ export function verifyPassword(password: string, hash: string): boolean