From 9bfe46de401d7ce6db01b86ad84bcc32d0fd3af4 Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Mon, 15 Apr 2024 16:49:29 +1000 Subject: [PATCH] Fix LookupResult doc --- src/lookup.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lookup.rs b/src/lookup.rs index 8424384..1efe21d 100644 --- a/src/lookup.rs +++ b/src/lookup.rs @@ -20,9 +20,9 @@ pub struct SplitDwarfLoad { /// Operations that consult debug information may require additional files /// to be loaded if split DWARF is being used. This enum returns the result -/// of the operation in the `Break` variant, or information about the split +/// of the operation in the `Output` variant, or information about the split /// DWARF that is required and a continuation to invoke once it is available -/// in the `Continue` variant. +/// in the `Load` variant. /// /// This enum is intended to be used in a loop like so: /// ```no_run