Commit 15a9d29c authored by Rusty Russell's avatar Rusty Russell

tools: "See Also:" can be a section in documentation, so allow it.

parent a560351e
...@@ -54,7 +54,7 @@ static bool is_section(const char *line, bool one_liner) ...@@ -54,7 +54,7 @@ static bool is_section(const char *line, bool one_liner)
if (!isupper(line[0])) if (!isupper(line[0]))
return false; return false;
len = strspn(line, IDENT_CHARS); len = strspn(line, IDENT_CHARS" ");
if (line[len] != ':') if (line[len] != ':')
return false; return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment