whitespace_rs/
lib.rs

1//! Tools to fix whitespace inconsistencies in text files
2//!
3//! This crate provides a set of tools for exploring and fixing common whitespace inconsistencies in text files.
4//! It is compatible with text files in UTF-8 format.
5//!
6//! If installed globally the command line tools `spacer` and `ender` are available for fixing beginnings and endings respectively.
7
8pub mod ender;
9pub mod spacer;