diff --git a/README.md b/README.md index 5d5ed78..62a8f99 100644 --- a/README.md +++ b/README.md @@ -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 ````