Skip to content

Commit

Permalink
fix typo in macaroon example
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Aug 4, 2020
1 parent 69e7bb4 commit 50e24a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ policy changes; for example, by adding the three following facts,
the verifier will continue to work even if someone decides to
self-attenuate itself macaroons to be only usable from IP address and browser:
````java
verifier.satisfyExact("IP = 127.0.0.1')");
verifier.satisfyExact("browser = Chrome')");
verifier.satisfyExact("IP = 127.0.0.1");
verifier.satisfyExact("browser = Chrome");
verifier.isValid(secretKey);
// > True
````
Expand Down

0 comments on commit 50e24a7

Please sign in to comment.