chore(docs): fix all rustdoc warnings (#54)

This commit is contained in:
2025-12-21 14:11:10 -08:00
committed by GitHub
parent a8a3774c35
commit d50f22a386
9 changed files with 14 additions and 12 deletions

View File

@@ -1,5 +1,8 @@
//! Sprout EFI Core.
//! This crate provides tools for working with the EFI environment.
//! Sprout EFI core.
//! This crate provides core EFI functionality for Sprout.
// For some reason this triggers, and I can't figure out why.
#![allow(rustdoc::bare_urls)]
#![no_std]
extern crate alloc;

View File

@@ -34,8 +34,7 @@ struct MediaLoaderProtocol {
}
/// Represents a media loader which has been registered in the UEFI stack.
/// You MUST call [MediaLoaderHandle::unregister] when ready to unregister.
/// [Drop] is not implemented for this type.
/// Calling `drop` on this handle will unregister the media loader.
pub struct MediaLoaderHandle {
/// The handle of the media loader in the UEFI stack.
handle: Handle,