From 125935ac9e7a85d92e17ebc69eaceccb3d82a254 Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Thu, 14 Mar 2024 17:34:19 -0700 Subject: [PATCH] minor doc typo fix --- .gitignore | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 577acc0..fd91d07 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules .vscode .nyc_output coverage +_* diff --git a/README.md b/README.md index 6971d2d..4fa7379 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ const key = await TOTP.createKey(); // defaults create a hex-encoded sha1 key const { secret, // key encoded as base32 uri, // key and metadata encoded as an otpauth URI - svg, // otpauthg URI encoded as QR code + svg, // otpauth URI encoded as QR code } = TOTP.createKeySVG({ accountname: 'test@example.com', issuer: 'Squeep', }, key, 'hex'); const totp = new TOTP({ -- 2.44.1