From 324fc75eb5dd1cf2b7b2d8c62071253df3985b76 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 5 Feb 2023 16:28:35 -0500 Subject: Fix inconsistent comment style --- src/string_utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/string_utils.h b/src/string_utils.h index 2fcfadac..e3a575f3 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -34,14 +34,14 @@ is_digit(const int c) return in_range(c, '0', '9'); } -/* RFC2234: HEXDIG ::= DIGIT / "A" / "B" / "C" / "D" / "E" / "F" */ +/** RFC2234: HEXDIG ::= DIGIT / "A" / "B" / "C" / "D" / "E" / "F" */ static inline bool is_hexdig(const int c) { return is_digit(c) || in_range(c, 'A', 'F'); } -/* Turtle / JSON / C: XDIGIT ::= DIGIT / A-F / a-f */ +/** Turtle / JSON / C: XDIGIT ::= DIGIT / A-F / a-f */ static inline bool is_xdigit(const int c) { -- cgit v1.2.1