Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[fs.op.copy] Replace non-codeblocks with outputblocks #7146

Merged
merged 1 commit into from
Mar 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/iostreams.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17372,16 +17372,16 @@
\pnum
\begin{example}
Given this directory structure:
\begin{codeblock}
\begin{outputblock}
/dir1
file1
file2
dir2
file3
\end{codeblock}
\end{outputblock}

Calling \tcode{copy("/dir1", "/dir3")} would result in:
\begin{codeblock}
\begin{outputblock}
/dir1
file1
file2
Expand All @@ -17390,10 +17390,10 @@
/dir3
file1
file2
\end{codeblock}
\end{outputblock}

Alternatively, calling \tcode{copy("/dir1", "/dir3", copy_options::recursive)} would result in:
\begin{codeblock}
\begin{outputblock}
/dir1
file1
file2
Expand All @@ -17404,7 +17404,7 @@
file2
dir2
file3
\end{codeblock}
\end{outputblock}
\end{example}
\end{itemdescr}

Expand Down