Fix typos in docs

This commit is contained in:
Antony Polukhin
2014-03-05 15:12:25 +04:00
parent b8265cdb4f
commit 501a0a992e
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
In this example we'll create a class, that stores pointer to function and remembers the exact type of a
parameter that function accepts. When an attempt to call the stored function will be made, type of input
parameter will be checked for exact match with initaily erased type of function.
parameter will be checked for exact match with initially erased type of function.
*/
#include <boost/type_index.hpp>

View File

@ -45,7 +45,7 @@ int main() {
//[type_index_my_type_index_type_id_runtime_test
/*`
Now the follwoing example will compile and work.
Now the following example will compile and work.
*/
my_struct str;
my_class& reference = str;