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, }