Remove unnecessary indentation in README

This commit is contained in:
timvisee 2023-01-14 15:03:44 +01:00
parent 7b35ef1d92
commit 578f13d7ec
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
1 changed files with 2 additions and 2 deletions

View File

@ -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
---