aboutsummaryrefslogtreecommitdiff
path: root/configamajig/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'configamajig/src/lib.rs')
-rw-r--r--configamajig/src/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/configamajig/src/lib.rs b/configamajig/src/lib.rs
index b67d4f2..ba13623 100644
--- a/configamajig/src/lib.rs
+++ b/configamajig/src/lib.rs
@@ -95,7 +95,7 @@ pub struct UserConfig {
}
impl UserConfig {
- /// Create a new UserConfig from a given name and assign UUID to them
+ /// Create a new `UserConfig` from a given name and assign UUID to them
pub fn new(name: impl Into<String>) -> Self {
Self {
name: name.into(),
@@ -111,7 +111,8 @@ pub struct RepoConfig {
}
impl RepoConfig {
- /// Create a new RepoConfig
+ /// Create a new `RepoConfig`
+ #[must_use]
pub fn new() -> Self {
Self {
maintainers: Vec::new(),