Skip to content

Commit aaa0906

Browse files
authored
[GlobPattern][Docs] End list with "." (#65397)
Apparently we can use "." to end a list and start a new paragraph: https://www.doxygen.nl/manual/lists.html
1 parent 1029fd0 commit aaa0906

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

llvm/include/llvm/Support/GlobPattern.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,18 @@ namespace llvm {
3232
/// supported.
3333
/// * \p "{<glob>,...}" matches one of the globs in the list. Nested brace
3434
/// expansions are not supported. If \p MaxSubPatterns is empty then
35-
/// characters \p "{,}" are treated as literals.
35+
/// brace expansions are not supported and characters \p "{,}" are treated as
36+
/// literals.
3637
/// * \p "\" escapes the next character so it is treated as a literal.
37-
///
38+
/// .
3839
/// Some known edge cases are:
3940
/// * \p "]" is allowed as the first character in a character class, i.e.,
4041
/// \p "[]]" is valid and matches the literal \p "]".
4142
/// * The empty character class, i.e., \p "[]", is invalid.
4243
/// * Empty or singleton brace expansions, e.g., \p "{}", \p "{a}", are invalid.
4344
/// * \p "}" and \p "," that are not inside a brace expansion are taken as
4445
/// literals, e.g., \p ",}" is valid but \p "{" is not.
45-
///
46+
/// .
4647
/// For example, \p "*[/\\]foo.{c,cpp}" will match (unix or windows) paths to
4748
/// all files named \p "foo.c" or \p "foo.cpp".
4849
class GlobPattern {

0 commit comments

Comments
 (0)