From 7e73cc886de59e0ef0b2b33dc10169c9c2dbf902 Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:00:13 +0100 Subject: [PATCH] fix docstrings --- crates/pacdef_core/src/grouping/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/pacdef_core/src/grouping/mod.rs b/crates/pacdef_core/src/grouping/mod.rs index 3a6c0ce..18bd8f1 100644 --- a/crates/pacdef_core/src/grouping/mod.rs +++ b/crates/pacdef_core/src/grouping/mod.rs @@ -2,10 +2,10 @@ This module reflects the relationship between groups, sections / backends and packages. -A ['Group'] contains one (strictly spoken zero, but this doesn't make sense) or -more ['Section']s, which relate to individual backends. Each section contains -one (strictly spoken zero) or more ['Package']s. On start-up `pacdef` will load -all groups using ['Group::load'], which in turn will get all packages from all +A [`Group`] contains one (strictly spoken zero, but this doesn't make sense) or +more [`Section`]s, which relate to individual backends. Each section contains +one (strictly spoken zero) or more [`Package`]s. On start-up `pacdef` will load +all groups using [`Group::load`], which in turn will get all packages from all sections. */ mod group;