Skip to content

Commit

Permalink
docs(rsjudge-utils): 📝 reorganize docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jisu-Woniu committed Apr 4, 2024
1 parent 3792131 commit 8f72012
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions crates/rsjudge-utils/src/command.rs
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,
Expand Down
6 changes: 2 additions & 4 deletions crates/rsjudge-utils/src/lib.rs
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;

0 comments on commit 8f72012

Please sign in to comment.