Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
laserpants authored Oct 13, 2023
1 parent 42b9dd5 commit 19de1a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ ctest -V
```cpp
sqidscxx::Sqids sqids({ minLength: 10 });

auto id = sqids.encode({ 1, 2, 3});
auto id = sqids.encode({ 1, 2, 3 });

std::cout << id << std::endl;
```
Expand All @@ -136,7 +136,7 @@ Output is `86Rf07xd4z`.
```cpp
sqidscxx::Sqids sqids({ alphabet: "FxnXM1kBN6cuhsAvjW3Co7l2RePyY8DwaU04Tzt9fHQrqSVKdpimLGIJOgb5ZE" });
auto id = sqids.encode({ 1, 2, 3});
auto id = sqids.encode({ 1, 2, 3 });
std::cout << id << std::endl;
```
Expand All @@ -148,7 +148,7 @@ Output is `B4aajs`.
```cpp
sqidscxx::Sqids sqids({ blocklist: {{ "86Rf07" }} });

auto id = sqids.encode({ 1, 2, 3});
auto id = sqids.encode({ 1, 2, 3 });

std::cout << id << std::endl;
```
Expand Down

0 comments on commit 19de1a5

Please sign in to comment.