Fix example code in README

This commit is contained in:
Konstantin Veretennicov 2020-04-27 19:16:16 +01:00 committed by GitHub
parent d0e807184b
commit ff2aa5d399
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()
# `a` until `b`
phi3 = a.until()
phi3 = a.until(b)
# `a` weak until `b`
phi4 = a.weak_until(b)