From 578f13d7ec30c7d4f02bce76c2b8874352ea3c7d Mon Sep 17 00:00:00 2001 From: timvisee Date: Sat, 14 Jan 2023 15:03:44 +0100 Subject: [PATCH] Remove unnecessary indentation in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcccbe0..868bc07 100644 --- a/README.md +++ b/README.md @@ -40,11 +40,11 @@ Add support for Steam TOTP tokens. --- This new type was added as a disambiguation between Raw and already base32 encoded secrets. ```Rust - Secret::Raw("TestSecretSuperSecret".as_bytes().to_vec()) +Secret::Raw("TestSecretSuperSecret".as_bytes().to_vec()) ``` Is equivalent to ```Rust - Secret::Encoded("KRSXG5CTMVRXEZLUKN2XAZLSKNSWG4TFOQ".to_string()) +Secret::Encoded("KRSXG5CTMVRXEZLUKN2XAZLSKNSWG4TFOQ".to_string()) ``` ### Generate a token ---