Skip to content

Commit

Permalink
fix misspelled \brief for doxygen (#5632)
Browse files Browse the repository at this point in the history
  • Loading branch information
traud authored Oct 29, 2021
1 parent 780761a commit d1592c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/model/array_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ array_factory::array_factory(ast_manager & m, model_core & md):
}

/**
\brieft Return as-array[f] where f is a fresh function symbol with the right domain and range for the array sort s.
\brief Return as-array[f] where f is a fresh function symbol with the right domain and range for the array sort s.
Store in fi the function interpretation for f.
*/
expr * array_factory::mk_array_interp(sort * s, func_interp * & fi) {
Expand Down
2 changes: 1 addition & 1 deletion src/muz/spacer/spacer_mbc.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class mbc {
typedef obj_map<func_decl, unsigned> partition_map;

/**
\Brief Model Based Cartesian projection of lits
\brief Model Based Cartesian projection of lits
*/
void operator()(const partition_map &pmap, expr_ref_vector &lits, model &mdl,
vector<expr_ref_vector> &res);
Expand Down
2 changes: 1 addition & 1 deletion src/smt/seq_offset_eq.h
Original file line number Diff line number Diff line change
Expand Up @@ -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); }
Expand Down
4 changes: 2 additions & 2 deletions src/smt/smt_relevancy.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit d1592c6

Please sign in to comment.