From 9c59a838ad7dc6ec46f63a4febbff55c0c6463ee Mon Sep 17 00:00:00 2001 From: Luke Harding Date: Tue, 30 Apr 2024 17:49:15 -0400 Subject: [PATCH] Update documentation in wrappers/mod and wrappers/pacman --- src/wrappers/mod.rs | 14 +++++++++++++- src/wrappers/pacman.rs | 4 ++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/wrappers/mod.rs b/src/wrappers/mod.rs index f85cc17..3b08948 100644 --- a/src/wrappers/mod.rs +++ b/src/wrappers/mod.rs @@ -1,2 +1,14 @@ +/* + Rust Arch Linux Updater + Copyright (C) 2024 Luke Harding + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + You should have received a copy of the GNU General Public License along with this program. If not, see . +*/ + +/* + wrappers/mod.rs + Just makes pacman accessible +*/ + pub mod pacman; -mod paru; diff --git a/src/wrappers/pacman.rs b/src/wrappers/pacman.rs index a408c13..40d42a9 100644 --- a/src/wrappers/pacman.rs +++ b/src/wrappers/pacman.rs @@ -7,8 +7,8 @@ */ /* - pacman.rs - This module provides an api to make working with Pacman much easier. + wrappers/pacman.rs + This module provides a wrapper to make working with Pacman much easier. */ use std::{error, fmt, result};