Print a section header. Use this to visually separate different sections of output. # Arguments `title` - The section title # Example ```rust,ignore print_section("Changes to be recorded:"); ```
(title: &str)
| 174 | /// print_section("Changes to be recorded:"); |
| 175 | /// ``` |
| 176 | pub fn print_section(title: &str) { |
| 177 | println!("{}", emphasis(title)); |
| 178 | } |
| 179 | |
| 180 | /// Print a blank line for visual separation. |
| 181 | pub fn print_blank() { |
no outgoing calls
no test coverage detected