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

fix misspelled \brief for doxygen (#5632)

This commit is contained in:
Alexander Traud 2021-10-29 15:34:28 +02:00 committed by GitHub
parent 780761a29e
commit d1592c6abf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -42,7 +42,7 @@ namespace smt {
seq_offset_eq(theory& th, ast_manager& m);
bool empty() const { return m_offset_equalities.empty(); }
/**
\breif determine if r1 = r2 + offset
\brief determine if r1 = r2 + offset
*/
bool find(enode* r1, enode* r2, int& offset) const;
bool contains(enode* r1, enode* r2) const { int offset = 0; return find(r1, r2, offset); }

View file

@ -169,12 +169,12 @@ namespace smt {
bool enabled() const;
/**
\Brief Return the region allocator for the smt::context that owns this propagator.
\brief Return the region allocator for the smt::context that owns this propagator.
*/
region & get_region() const;
/**
\Brief Return the ast_manager for the smt::context that owns this propagator.
\brief Return the ast_manager for the smt::context that owns this propagator.
*/
ast_manager & get_manager() const;