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

Merge pull request #1465 from waywardmonkeys/fix-typos

thanks
This commit is contained in:
Nikolaj Bjorner 2018-02-05 18:31:09 -08:00 committed by GitHub
commit 9d37257059
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 67 additions and 67 deletions

View file

@ -47,7 +47,7 @@ public:
set_global_param('pp.decimal', 'true')
will set the parameter "decimal" in the module "pp" to true.
An exception is thrown if the the parameter name is unknown, or if the value is incorrect.
An exception is thrown if the parameter name is unknown, or if the value is incorrect.
*/
static void set(char const * name, char const * value);
static void set(symbol const & name, char const * value);
@ -57,7 +57,7 @@ public:
If the parameter is not set, then it just returns 'default'.
An exception is thrown if the the parameter name is unknown.
An exception is thrown if the parameter name is unknown.
*/
static std::string get_value(char const * name);
static std::string get_value(symbol const & name);

View file

@ -187,7 +187,7 @@ class mpz_manager {
/**
\brief Set \c a with the value stored at m_tmp[IDX], and the given sign.
\c sz is an overapproximation of the the size of the number stored at \c tmp.
\c sz is an overapproximation of the size of the number stored at \c tmp.
*/
template<int IDX>
void set(mpz & a, int sign, unsigned sz);