From 81c7a17053f286e25d2e469c4128c0229178c202 Mon Sep 17 00:00:00 2001 From: Josef Reidinger Date: Fri, 20 Dec 2024 13:16:46 +0100 Subject: [PATCH] remove leftover and fix doc --- rust/agama-lib/src/bootloader.rs | 3 +-- rust/agama-lib/src/bootloader/store.rs | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/rust/agama-lib/src/bootloader.rs b/rust/agama-lib/src/bootloader.rs index dc6b83528..24dbb6c8d 100644 --- a/rust/agama-lib/src/bootloader.rs +++ b/rust/agama-lib/src/bootloader.rs @@ -18,10 +18,9 @@ // To contact SUSE LLC about this file by physical or electronic mail, you may // find current contact information at www.suse.com. -//! Implements support for handling the storage settings +//! Implements support for handling the bootloader settings pub mod client; -// pub mod http_client; pub mod http_client; pub mod model; pub mod proxies; diff --git a/rust/agama-lib/src/bootloader/store.rs b/rust/agama-lib/src/bootloader/store.rs index 0ff742c78..b41b6d701 100644 --- a/rust/agama-lib/src/bootloader/store.rs +++ b/rust/agama-lib/src/bootloader/store.rs @@ -18,7 +18,7 @@ // To contact SUSE LLC about this file by physical or electronic mail, you may // find current contact information at www.suse.com. -//! Implements the store for the storage settings. +//! Implements the store for the bootloader settings. use crate::base_http_client::BaseHTTPClient; use crate::error::ServiceError; @@ -26,7 +26,7 @@ use crate::error::ServiceError; use super::http_client::BootloaderHTTPClient; use super::model::BootloaderSettings; -/// Loads and stores the storage settings from/to the HTTP service. +/// Loads and stores the bootloader settings from/to the HTTP service. pub struct BootloaderStore { bootloader_client: BootloaderHTTPClient, }