Skip to content

Commit 8114ccd

Browse files
authored
[func.search] Fix inconsistencies between boyer_moore searchers (#4873)
1 parent 7a2e73d commit 8114ccd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/utilities.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16098,8 +16098,8 @@
1609816098
\pnum
1609916099
\expects
1610016100
The value type of \tcode{RandomAccessIterator1} meets
16101-
the \oldconcept{DefaultConstructible} requirements,
16102-
the \oldconcept{CopyConstructible} requirements, and
16101+
the \oldconcept{DefaultConstructible},
16102+
the \oldconcept{Copy\-Constructible}, and
1610316103
the \oldconcept{CopyAssignable} requirements.
1610416104

1610516105
\pnum
@@ -16215,7 +16215,7 @@
1621516215
\pnum
1621616216
\throws
1621716217
Any exception thrown by the copy constructor of \tcode{RandomAccessIterator1},
16218-
or by the default constructor, copy constructor, or the copy assignment operator of the value type of \tcode{RandomAccess\-Iterator1}
16218+
or by the default constructor, copy constructor, or the copy assignment operator of the value type of \tcode{RandomAccess\-Iterator1},
1621916219
or the copy constructor or \tcode{operator()} of \tcode{BinaryPredicate} or \tcode{Hash}.
1622016220
May throw \tcode{bad_alloc} if additional memory needed for internal data structures cannot be allocated.
1622116221
\end{itemdescr}
@@ -16241,7 +16241,7 @@
1624116241
\returns
1624216242
A pair of iterators \tcode{i} and \tcode{j} such that
1624316243
\begin{itemize}
16244-
\item \tcode{i} is the first iterator \tcode{i} in the range
16244+
\item \tcode{i} is the first iterator in the range
1624516245
\range{first}{last - (pat_last_ - pat_first_)} such that
1624616246
for every non-negative integer \tcode{n} less than \tcode{pat_last_ - pat_first_}
1624716247
the following condition holds:

0 commit comments

Comments
 (0)