3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

Merge pull request #2368 from waywardmonkeys/fix-typo

Python: Fix doc comment typo.
This commit is contained in:
Nikolaj Bjorner 2019-07-05 14:38:32 +07:00 committed by GitHub
commit 6e63734882
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1301,7 +1301,7 @@ def Const(name, sort):
return _to_expr_ref(Z3_mk_const(ctx.ref(), to_symbol(name, ctx), sort.ast), ctx)
def Consts(names, sort):
"""Create a several constants of the given sort.
"""Create several constants of the given sort.
`names` is a string containing the names of all constants to be created.
Blank spaces separate the names of different constants.