```rust fn main() { let msg = ""; println!("{}", msg.starts_with("\x03")); } ``` ```console warning: single-character string constant used as pattern --> src/main.rs:3:36 | 3 | println!("{}", msg.starts_with("\x03")); | ----------------^^^^^^- help: try using a char instead: `msg.starts_with("\x03")` | ``` I would expect the lint to recommend `msg.starts_with('\x03')` and not `msg.starts_with("\x03")` which is the original code.