From: Justin Wind <justin.wind+git@gmail.com>
Date: Fri, 15 Mar 2024 00:34:19 +0000 (-0700)
Subject: minor doc typo fix
X-Git-Tag: v1.1.4~1
X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=125935ac9e7a85d92e17ebc69eaceccb3d82a254;p=squeep-totp

minor doc typo fix
---

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({