From 809d47b71456b0596bfe854167cf84c537f74c30 Mon Sep 17 00:00:00 2001 From: Elliot Date: Mon, 19 Feb 2018 11:18:35 -0800 Subject: [PATCH] Fix Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02728b808..4f5eeb1fa 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ catch (SignatureVerificationException) try { var json = new JwtBuilder() -        .WithSeecret(secret) +        .WithSecret(secret) .MustVerifySignature() .Decode(token); Console.WriteLine(json);