From 661cbe15af45cbb566035598738767b6ec45f1de Mon Sep 17 00:00:00 2001 From: Olaf van der Spek Date: Thu, 20 Nov 2014 23:55:45 +0100 Subject: [PATCH] Update 13_relational_operators.qbk Missing word --- doc/13_relational_operators.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/13_relational_operators.qbk b/doc/13_relational_operators.qbk index e36dcf5..861a4e8 100644 --- a/doc/13_relational_operators.qbk +++ b/doc/13_relational_operators.qbk @@ -1,7 +1,7 @@  [section Relational operators] -Type `optional` is __SGI_EQUALITY_COMPARABLE__ whenever `T` is __SGI_EQUALITY_COMPARABLE__. Two optional objects containing a value compare in the same as their contained values. The uninitialized state of `optional` is treated as a distinct value, equal to itself, and unequal to any value of type `T`: +Type `optional` is __SGI_EQUALITY_COMPARABLE__ whenever `T` is __SGI_EQUALITY_COMPARABLE__. Two optional objects containing a value compare in the same way as their contained values. The uninitialized state of `optional` is treated as a distinct value, equal to itself, and unequal to any value of type `T`: boost::optional oN = boost::none; boost::optional o0 = 0;