Skip to content

Commit

Permalink
fix typo (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-roberts authored Jul 29, 2024
1 parent 1cb4a8a commit 6ab8a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Takes `Header`, `Payload` and `CryptoKey` and returns the url-safe encoded
```typescript
import { create } from "https://deno.land/x/djwt@$VERSION/mod.ts";

const jwt = await create({ alg: "HS512", typ: "JWT" }, { foo: "bar" }, key);
const jwt = await create({ alg: "HS512", type: "JWT" }, { foo: "bar" }, key);
```

### verify
Expand Down

0 comments on commit 6ab8a17

Please sign in to comment.