From a2a369417df453b1edf5ed51aec86d891513e166 Mon Sep 17 00:00:00 2001 From: askiiart Date: Thu, 26 Dec 2024 12:32:14 -0600 Subject: [PATCH] format --- src/data.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data.rs b/src/data.rs index 2d6cf76..1d99a1c 100644 --- a/src/data.rs +++ b/src/data.rs @@ -21,9 +21,9 @@ pub(crate) struct Config { #[serde(default = "max_threads", rename = "max-threads")] max_threads: u32, /// Holds the packages, including their compilation and packaging - /// + /// /// Format: { "librewolf": Package { compilation, packaging } } - /// + /// /// See [`Package`] for details packages: HashMap, #[serde(rename = "update-repo")] @@ -36,7 +36,7 @@ pub(crate) struct Config { pub(crate) struct Job { #[serde(default = "job_threads")] /// How many threads to limit this job to; recommended to set it to the max threads the job will use - /// + /// /// If `threads` isn't specified, it will fall back to `max_threads` (from [`Config`]); the same behavior applies if `threads` is greater than `max_threads` threads: u32, image: String,