Update documentation in wrappers/mod and wrappers/pacman

This commit is contained in:
Luke Harding 2024-04-30 17:49:15 -04:00
parent 41a7eb90c5
commit 9c59a838ad
2 changed files with 15 additions and 3 deletions

View File

@ -1,2 +1,14 @@
/*
Rust Arch Linux Updater
Copyright (C) 2024 Luke Harding <luke@lukeh990.io>
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 <https://www.gnu.org/licenses/>.
*/
/*
wrappers/mod.rs
Just makes pacman accessible
*/
pub mod pacman; pub mod pacman;
mod paru;

View File

@ -7,8 +7,8 @@
*/ */
/* /*
pacman.rs wrappers/pacman.rs
This module provides an api to make working with Pacman much easier. This module provides a wrapper to make working with Pacman much easier.
*/ */
use std::{error, fmt, result}; use std::{error, fmt, result};