Skip to content

Commit 3a3fdee

Browse files
committed
escape <name>
1 parent beeebef commit 3a3fdee

File tree

1 file changed

+1
-1
lines changed
  • crates/utils/re_ros_msg/src

1 file changed

+1
-1
lines changed

crates/utils/re_ros_msg/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn extract_msg_specs(input: &str) -> Vec<(String, String)> {
9595

9696
/// Parse a section of lines into a (name, body) pair.
9797
///
98-
/// The first line should contain "MSG: <name>" and subsequent lines form the message body.
98+
/// The first line should contain "MSG: `<name>`" and subsequent lines form the message body.
9999
fn parse_section(lines: &[&str]) -> Option<(String, String)> {
100100
if lines.len() < 2 {
101101
return None;

0 commit comments

Comments
 (0)