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

pub mod ender;
pub mod spacer;