Skip to content

Commit

Permalink
fix typo (#6628)
Browse files Browse the repository at this point in the history
  • Loading branch information
depted committed Mar 9, 2023
1 parent 1612b57 commit cf4df08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/python/z3/z3.py
Original file line number Diff line number Diff line change
Expand Up @@ -11343,7 +11343,7 @@ def Range(lo, hi, ctx=None):
return ReRef(Z3_mk_re_range(lo.ctx_ref(), lo.ast, hi.ast), lo.ctx)

def Diff(a, b, ctx=None):
"""Create the difference regular epression
"""Create the difference regular expression
"""
return ReRef(Z3_mk_re_diff(a.ctx_ref(), a.ast, b.ast), a.ctx)

Expand Down

0 comments on commit cf4df08

Please sign in to comment.