From 9a87f2250d6412de69caebe09d4a137f1820f3d0 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Fri, 6 Jun 2014 12:32:43 +0400 Subject: [PATCH] Corrected a typo. --- doc/scoped_enum.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/scoped_enum.qbk b/doc/scoped_enum.qbk index eca50fe..ff62aad 100644 --- a/doc/scoped_enum.qbk +++ b/doc/scoped_enum.qbk @@ -127,7 +127,7 @@ The other way used a different set of macros: sample = algae::green; foo( algae::cyan ); -Here `BOOST_SCOPED_ENUM_START` correcponds to `BOOST_SCOPED_ENUM_DECLARE_BEGIN`, `BOOST_SCOPED_ENUM_END` to `BOOST_SCOPED_ENUM_DECLARE_END` +Here `BOOST_SCOPED_ENUM_START` corresponds to `BOOST_SCOPED_ENUM_DECLARE_BEGIN`, `BOOST_SCOPED_ENUM_END` to `BOOST_SCOPED_ENUM_DECLARE_END` and `BOOST_SCOPED_ENUM` to `BOOST_SCOPED_ENUM_NATIVE`. Note also the semicolon before `BOOST_SCOPED_ENUM_END`. In the current version these macros produce equivalent result to the ones described above and are considered deprecated.