Skip to content

Commit ede59a5

Browse files
committed
Fix overfull hboxes.
1 parent 57707b5 commit ede59a5

File tree

1 file changed

+20
-13
lines changed

1 file changed

+20
-13
lines changed

source/iostreams.tex

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12832,10 +12832,12 @@
1283212832
\begin{itemdescr}
1283312833
\pnum
1283412834
\postconditions
12835-
\tcode{code() == ec},
12836-
\tcode{path1().empty() == true},
12837-
\tcode{path2().empty() == true}, and
12838-
\tcode{string_view(what()).find(what_arg)} \tcode{!= string_view::npos}.
12835+
\begin{itemize}
12836+
\item \tcode{code() == ec},
12837+
\item \tcode{path1().empty() == true},
12838+
\item \tcode{path2().empty() == true}, and
12839+
\item \tcode{string_view(what()).find(what_arg)} \tcode{!= string_view::npos}.
12840+
\end{itemize}
1283912841
\end{itemdescr}
1284012842

1284112843
\indexlibrary{\idxcode{filesystem_error}!constructor}%
@@ -12846,10 +12848,12 @@
1284612848
\begin{itemdescr}
1284712849
\pnum
1284812850
\postconditions
12849-
\tcode{code() == ec},
12850-
\tcode{path1()} returns a reference to the stored copy of \tcode{p1},
12851-
\tcode{path2().empty() == true}, and
12852-
\tcode{string_view(what()).find(what_arg)} \tcode{!= string_view::npos}.
12851+
\begin{itemize}
12852+
\item \tcode{code() == ec},
12853+
\item \tcode{path1()} returns a reference to the stored copy of \tcode{p1},
12854+
\item \tcode{path2().empty() == true}, and
12855+
\item \tcode{string_view(what()).find(what_arg)} \tcode{!= string_view::npos}.
12856+
\end{itemize}
1285312857
\end{itemdescr}
1285412858

1285512859
\indexlibrary{\idxcode{filesystem_error}!constructor}%
@@ -12860,10 +12864,12 @@
1286012864
\begin{itemdescr}
1286112865
\pnum
1286212866
\postconditions
12863-
\tcode{code() == ec},
12864-
\tcode{path1()} returns a reference to the stored copy of \tcode{p1},
12865-
\tcode{path2()} returns a reference to the stored copy of \tcode{p2}, and
12866-
\tcode{string_view(what()).find(what_arg)} \tcode{!= string_view::npos}.
12867+
\begin{itemize}
12868+
\item \tcode{code() == ec},
12869+
\item \tcode{path1()} returns a reference to the stored copy of \tcode{p1},
12870+
\item \tcode{path2()} returns a reference to the stored copy of \tcode{p2}, and
12871+
\item \tcode{string_view(what()).find(what_arg)} \tcode{!= string_view::npos}.
12872+
\end{itemize}
1286712873
\end{itemdescr}
1286812874

1286912875
\indexlibrarymember{path1}{filesystem_error}%
@@ -14478,7 +14484,8 @@
1447814484
\item Then, iterate over the files in \tcode{from}, as if by
1447914485
\begin{codeblock}
1448014486
for (const directory_entry& x : directory_iterator(from))
14481-
copy(x.path(), to/x.path().filename(), options | copy_options::@\placeholder{in-recursive-copy}@);
14487+
copy(x.path(), to/x.path().filename(),
14488+
options | copy_options::@\placeholder{in-recursive-copy}@);
1448214489
\end{codeblock}
1448314490
where \tcode{\placeholder{in-recursive-copy}}
1448414491
is a bitmask element of \tcode{copy_options}

0 commit comments

Comments
 (0)