-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(rsjudge-utils): 📝 reorganize docs
- Loading branch information
1 parent
3792131
commit 8f72012
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! Functions for working with [`std::process::Command`]. | ||
use std::{ | ||
io::ErrorKind, | ||
iter, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
#![warn(clippy::print_stdout, clippy::print_stderr)] | ||
|
||
//! A collection of utility functions for the rsjudge project. | ||
#![warn(missing_docs)] | ||
// No `(e)print` or `(e)println` in library code. | ||
#![warn(clippy::print_stdout, clippy::print_stderr, missing_docs)] | ||
|
||
#[macro_use] | ||
mod error_macros; | ||
|
||
pub mod trim; | ||
|
||
/// Functions for working with `std::process::Command`. | ||
pub mod command; |