Ticket #7401: 3.patch

File 3.patch, 1.9 KB (added by Hideaki Takei <hideaki.takei@…>, 10 years ago)

small correction on comments in is_permutation.hpp

  • is_permutation.hpp

    diff -r 5ba2c02130b8 -r b82520d50289 is_permutation.hpp
    a b  
    4646
    4747
    4848/// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, ForwardIterator2 first2, BinaryPredicate p )
    49 /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
     49/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
    5050///
    5151/// \param first    The start of the input sequence
    5252/// \param last     One past the end of the input sequence
     
    8888}
    8989
    9090/// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, ForwardIterator2 first2 )
    91 /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
     91/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
    9292///
    9393/// \param first    The start of the input sequence
    9494/// \param last     One past the end of the input sequence
     
    108108#endif
    109109
    110110/// \fn is_permutation ( const Range &r, ForwardIterator first2 )
    111 /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
     111/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
    112112///
    113113/// \param r        The input range
    114114/// \param first2   The start of the second sequence
     
    119119}
    120120
    121121/// \fn is_permutation ( const Range &r, ForwardIterator first2, BinaryPredicate pred )
    122 /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
     122/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
    123123///
    124124/// \param r        The input range
    125125/// \param first2   The start of the second sequence