Print a hint/suggestion message to stdout. The message is formatted in dim style, typically used for guiding users on what to do next. # Arguments `message` - The hint message to print # Example ```rust,ignore print_hint("Run 'atomic add ' to track new files"); ```
(message: &str)
| 155 | /// print_hint("Run 'atomic add <file>' to track new files"); |
| 156 | /// ``` |
| 157 | pub fn print_hint(message: &str) { |
| 158 | println!("{}", hint(message)); |
| 159 | } |
| 160 | |
| 161 | // Structured Output Helpers |
| 162 |
no outgoing calls
no test coverage detected