Ticket #10294: fix_type_index_typo.patch

File fix_type_index_typo.patch, 6.9 KB (added by Michel Morin, 8 years ago)
  • examples/exact_types_match.cpp

    (missmatch --> mismatch)  
    53         func.call<int&>(i); // Will throw, because types `int&` and `int` missmatch
     53        func.call<int&>(i); // Will throw, because types `int&` and `int` mismatch
  • examples/table_of_names.cpp

    (templae --> template)  
    81             [[Template class with templae classes][`5templIS_IcaES_Ii17user_defined_typeEE`] [`templ<templ<char, signed char>, templ<int, user_defined_type> >`] [`templ<templ<char, signed char>, templ<int, user_defined_type> >]`] ]
     81            [[Template class with template classes][`5templIS_IcaES_Ii17user_defined_typeEE`] [`templ<templ<char, signed char>, templ<int, user_defined_type> >`] [`templ<templ<char, signed char>, templ<int, user_defined_type> >]`] ]
  • examples/table_of_names.cpp

    (becuse --> because)  
    84     We have not show the "noRTTI & pretty_name" column in the table becuse it is almost equal
     84    We have not show the "noRTTI & pretty_name" column in the table because it is almost equal
  • test/type_index_test.cpp

    (comparisom --> comparison)  
    120     // Chaecking that comparisom operators overloads compile
     120    // Chaecking that comparison operators overloads compile
  • include/boost/type_index/ctti_type_index.hpp

    (whant --> want)  
    38 //      1) we do not whant to give user ability to manually construct and compare `struct-that-represents-type`
     38//      1) we do not want to give user ability to manually construct and compare `struct-that-represents-type`
  • include/boost/type_index/ctti_type_index.hpp

    (beteween --> between)  
    39 //      2) we need to distinguish beteween `struct-that-represents-type` and `const char*`
     39//      2) we need to distinguish between `struct-that-represents-type` and `const char*`
  • include/boost/type_index/ctti_type_index.hpp

    (shure --> sure)  
    41 //      4) we need a compile-time control to make shure that user does not copy or
     41//      4) we need a compile-time control to make sure that user does not copy or
  • include/boost/type_index/ctti_type_index.hpp

    (tempalte --> template) (patameter --> parameter)  
    75 /// Helper method for getting detail::ctti_data of a tempalte patameter T.
     75/// Helper method for getting detail::ctti_data of a template parameter T.
  • include/boost/type_index/detail/compile_time_type_info.hpp

    (posible --> possible)  
    110 /// This name must be as short as posible, to avoid code bloat
     110/// This name must be as short as possible, to avoid code bloat
  • include/boost/type_index/stl_type_index.hpp

    (temaplte --> template)  
    256         // in typeid() expressions. Full temaplte specialization for 'integral' fixes that issue:
     256        // in typeid() expressions. Full template specialization for 'integral' fixes that issue:
  • include/boost/type_index/type_index_facade.hpp

    (retuns --> returns)  
    73     /// \return Name of a type. By default retuns Derived::raw_name().
     73    /// \return Name of a type. By default returns Derived::raw_name().
  • include/boost/type_index/type_index_facade.hpp

    (redable --> readable) (retuns --> returns)  
    79     /// \return Human redable type name. By default retuns Derived::name().
     79    /// \return Human readable type name. By default returns Derived::name().
  • doc/type_index.qbk

    (usefull --> useful)  
    277 Sometimes there may be a need to create your own type info system. This may be usefull if you wish to store some more info about types (PODness, size of a type, pointers to common functions...) or if you have an idea of a more compact types representations.
     277Sometimes there may be a need to create your own type info system. This may be useful if you wish to store some more info about types (PODness, size of a type, pointers to common functions...) or if you have an idea of a more compact types representations.
  • doc/type_index.qbk

    (usng --> using)  
    381 then you are usng a compiler that was not tested with this library and you need to setup the
     381then you are using a compiler that was not tested with this library and you need to setup the
  • doc/type_index.qbk

    (recomended --> recommended)  
    397 # (optional, but highly recomended) [@http://www.boost.org/support/bugs.html create ticket] with
     397# (optional, but highly recommended) [@http://www.boost.org/support/bugs.html create ticket] with
  • doc/type_index.qbk

    (macto --> macro)  
    418 and `skip_at_end` to `sizeof("]") - 1` and last parameter of macto to "T = ".
     418and `skip_at_end` to `sizeof("]") - 1` and last parameter of macro to "T = ".