Skip to content

Commit

Permalink
fixup whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
prince-chrismc authored Dec 29, 2023
1 parent c6662bc commit f3abf91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/signing.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Then everything else is the same, just pass in your implementation such as:
```cpp
auto token = jwt::create()
.set_id("custom-algo-example")
.set_issued_now()
.set_expires_in(std::chrono::seconds{36000})
.set_issued_now()
.set_expires_in(std::chrono::seconds{36000})
.set_payload_claim("sample", jwt::claim(std::string{"test"}))
.sign(your_algorithm{/* what ever you want */});
```

0 comments on commit f3abf91

Please sign in to comment.