diff --git a/docs/user/interface/Font.dox b/docs/user/interface/Font.dox
index 6ed9d3f150..c35f488571 100644
--- a/docs/user/interface/Font.dox
+++ b/docs/user/interface/Font.dox
@@ -474,8 +474,8 @@
 
 /*!
 	\fn unicode_block unicode_block::operator&(const unicode_block& block) const
-	\brief Creates a new \c unicode_block object that is the intersection of
-		\a block and the \c unicode_block object.
+	\brief Creates and returns a new \c unicode_block object that is the
+	       intersection of \a block and the \c unicode_block object.
 
 	\param block The Unicode block to intersect with.
 
@@ -487,8 +487,8 @@
 
 /*!
 	\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
-		and the \c unicode_block object.
+	\brief Creates and returns a new \c unicode_block object that is the union
+	       of \a block and the \c unicode_block object.
 
 	\param block The Unicode block to form a union with.
 
diff --git a/docs/user/interface/Rect.dox b/docs/user/interface/Rect.dox
index 4ab8abcddc..81a7071dd2 100644
--- a/docs/user/interface/Rect.dox
+++ b/docs/user/interface/Rect.dox
@@ -690,8 +690,8 @@ BRect(0, 0, width - 1, height -1);
 
 /*!
 	\fn BRect BRect::operator&(BRect other) const
-	\brief Returns a new BRect that is the intersection of the BRect and
-	       \a other.
+	\brief Creates and returns a new BRect that is the intersection of the
+	       BRect and \a other.
 
 	The intersection of two rectangles is the area that they both share.