API Docs: minor brief description updates

This commit is contained in:
John Scipione
2017-11-10 15:24:34 -08:00
parent 9e72aeccc5
commit 1061001b46
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -474,8 +474,8 @@
/*! /*!
\fn unicode_block unicode_block::operator&(const unicode_block& block) const \fn unicode_block unicode_block::operator&(const unicode_block& block) const
\brief Creates a new \c unicode_block object that is the intersection of \brief Creates and returns a new \c unicode_block object that is the
\a block and the \c unicode_block object. intersection of \a block and the \c unicode_block object.
\param block The Unicode block to intersect with. \param block The Unicode block to intersect with.
@@ -487,8 +487,8 @@
/*! /*!
\fn unicode_block unicode_block::operator|(const unicode_block& block) const \fn unicode_block unicode_block::operator|(const unicode_block& block) const
\brief Creates a new \c unicode_block object that is the union of \a block \brief Creates and returns a new \c unicode_block object that is the union
and the \c unicode_block object. of \a block and the \c unicode_block object.
\param block The Unicode block to form a union with. \param block The Unicode block to form a union with.
+2 -2
View File
@@ -690,8 +690,8 @@ BRect(0, 0, width - 1, height -1);
/*! /*!
\fn BRect BRect::operator&(BRect other) const \fn BRect BRect::operator&(BRect other) const
\brief Returns a new BRect that is the intersection of the BRect and \brief Creates and returns a new BRect that is the intersection of the
\a other. BRect and \a other.
The intersection of two rectangles is the area that they both share. The intersection of two rectangles is the area that they both share.