Merge pull request #218 from kveretennicov/patch-1

Fix example code in README
This commit is contained in:
Marcell Vazquez-Chanlatte 2020-04-27 16:05:05 -07:00 committed by GitHub
commit 4f138133ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ phi1 = a.eventually()
phi2 = (a & b).always() phi2 = (a & b).always()
# `a` until `b` # `a` until `b`
phi3 = a.until() phi3 = a.until(b)
# `a` weak until `b` # `a` weak until `b`
phi4 = a.weak_until(b) phi4 = a.weak_until(b)