3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Fix some typos. (#7115)

This commit is contained in:
Bruce Mitchener 2024-02-08 14:06:43 +07:00 committed by GitHub
parent 937d4aa8f4
commit 53f89a81c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 33 additions and 33 deletions

View file

@ -8984,7 +8984,7 @@ def substitute_funs(t, *m):
m = m1
if z3_debug():
_z3_assert(is_expr(t), "Z3 expression expected")
_z3_assert(all([isinstance(p, tuple) and is_func_decl(p[0]) and is_expr(p[1]) for p in m]), "Z3 invalid substitution, funcion pairs expected.")
_z3_assert(all([isinstance(p, tuple) and is_func_decl(p[0]) and is_expr(p[1]) for p in m]), "Z3 invalid substitution, function pairs expected.")
num = len(m)
_from = (FuncDecl * num)()
_to = (Ast * num)()