From 55e10e8468c2d9e6e6c23ad282fffc20ddc33bfe Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Wed, 18 Jul 2012 22:35:26 +0400 Subject: [PATCH] Fix typo in documentation --- libs/type_index/doc/type_index.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/type_index/doc/type_index.qbk b/libs/type_index/doc/type_index.qbk index 42cedfa..8e4afb3 100644 --- a/libs/type_index/doc/type_index.qbk +++ b/libs/type_index/doc/type_index.qbk @@ -11,7 +11,7 @@ ] [section Motivation] -Sometimes getting and storing information about a template type at runtime is required. For such cases a construction like `&typeid(T)` or C++11 class `std::type_index` is usually used. And that is the point, where problems strat: +Sometimes getting and storing information about a template type at runtime is required. For such cases a construction like `&typeid(T)` or C++11 class `std::type_index` is usually used. And that is the point, where problems start: * `typeid(T)` and `std::type_index` require Run Time Type Info (RTTI) * some implementations of `typeid(T)` strip const, volatile and references from type, while others don't