fix(backend): docstring

This commit is contained in:
steven-omaha
2024-04-24 20:11:24 +02:00
parent b7bbb37511
commit 1268df3628
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -8,13 +8,14 @@ use std::fmt::Display;
use crate::prelude::*;
use anyhow::{Context, Result};
// A backend with its associated managed packages
/// A backend with its associated managed packages
pub struct ManagedBackend {
/// All managed packages for this backend, i.e. all packages
/// under the corresponding section in all group files.
pub packages: Packages,
pub any_backend: AnyBackend,
}
impl ManagedBackend {
/// Get unmanaged packages, sorted alphabetically.
///