Skip to content

Commit f57e7af

Browse files
authored
Merge pull request #2 from kfrederix/patch-2
fix typo + add missing "=" symbol
2 parents 858fb83 + 919de82 commit f57e7af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ JwtManager.RsJwt jwt = new JwtManager.RsJwt
3838
};
3939

4040
string payload = jwt.Validate(strToken);
41-
var myToken JsonConvert.DesrializeObject<JwtToken>(payload);
41+
var myToken = JsonConvert.DeserializeObject<JwtToken>(payload);
4242
```
4343

4444
In case of an error, an Exception will be thrown.

0 commit comments

Comments
 (0)