Skip to content

Commit f093178

Browse files
jparrisCopilot
andauthored
Update src/merge.rs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent d6e28eb commit f093178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/merge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ fn fix_outlines(doc: &mut lopdf::Document, outline_id: lopdf::ObjectId, parent_i
284284

285285
queue.push_back((outline_id, parent_id));
286286

287-
// Deep First walk using a Double Ended Queue
287+
// Breadth-First walk using a Double Ended Queue
288288
while let Some((outline_id, parent_id)) = queue.pop_front() {
289289

290290
let outline_obj = doc.get_dictionary_mut(outline_id)?;

0 commit comments

Comments
 (0)