1 2 3 4 5 6 7 8 9 10 11
//! Modules for documentation. pub mod normal_path_error { #![doc = "About normal path error."] #![doc = include_str!("normal_path_error.md")] } pub mod self_path_warning { #![doc = "About self path error."] #![doc = include_str!("self_path_warning.md")] }