@@ -2506,9 +2506,9 @@ struct FormatStyle {
25062506 // / lists.
25072507 // /
25082508 // / Important differences:
2509- // / - No spaces inside the braced list.
2510- // / - No line break before the closing brace.
2511- // / - Indentation with the continuation indent, not with the block indent.
2509+ // / * No spaces inside the braced list.
2510+ // / * No line break before the closing brace.
2511+ // / * Indentation with the continuation indent, not with the block indent.
25122512 // /
25132513 // / Fundamentally, C++11 braced lists are formatted exactly like function
25142514 // / calls would be formatted in their place. If the braced list follows a name
@@ -3742,19 +3742,19 @@ struct FormatStyle {
37423742 QualifierAlignmentStyle QualifierAlignment;
37433743
37443744 // / The order in which the qualifiers appear.
3745- // / Order is an array that can contain any of the following:
3745+ // / The order is an array that can contain any of the following:
37463746 // /
3747- // / * const
3748- // / * inline
3749- // / * static
3750- // / * friend
3751- // / * constexpr
3752- // / * volatile
3753- // / * restrict
3754- // / * type
3747+ // / * `` const``
3748+ // / * `` inline``
3749+ // / * `` static``
3750+ // / * `` friend``
3751+ // / * `` constexpr``
3752+ // / * `` volatile``
3753+ // / * `` restrict``
3754+ // / * `` type``
37553755 // /
37563756 // / \note
3757- // / It ** must** contain ``type``.
3757+ // / It must contain ``type``.
37583758 // / \endnote
37593759 // /
37603760 // / Items to the left of ``type`` will be placed to the left of the type and
@@ -5449,10 +5449,10 @@ formatReplacements(StringRef Code, const tooling::Replacements &Replaces,
54495449// / cleaning up the code after that on success; otherwise, return an llvm::Error
54505450// / carrying llvm::StringError.
54515451// / This also supports inserting/deleting C++ #include directives:
5452- // / - If a replacement has offset UINT_MAX, length 0, and a replacement text
5452+ // / * If a replacement has offset UINT_MAX, length 0, and a replacement text
54535453// / that is an #include directive, this will insert the #include into the
54545454// / correct block in the \p Code.
5455- // / - If a replacement has offset UINT_MAX, length 1, and a replacement text
5455+ // / * If a replacement has offset UINT_MAX, length 1, and a replacement text
54565456// / that is the name of the header to be removed, the header will be removed
54575457// / from \p Code if it exists.
54585458// / The include manipulation is done via ``tooling::HeaderInclude``, see its
@@ -5558,13 +5558,12 @@ extern const char *DefaultFallbackStyle;
55585558// /
55595559// / ``StyleName`` can take several forms:
55605560// / * "{<key>: <value>, ...}" - Set specic style parameters.
5561- // / * "<style name>" - One of the style names supported by
5562- // / getPredefinedStyle().
5561+ // / * "<style name>" - One of the style names supported by getPredefinedStyle().
55635562// / * "file" - Load style configuration from a file called ``.clang-format``
5564- // / located in one of the parent directories of ``FileName`` or the current
5565- // / directory if ``FileName`` is empty.
5563+ // / located in one of the parent directories of ``FileName`` or the current
5564+ // / directory if ``FileName`` is empty.
55665565// / * "file:<format_file_path>" to explicitly specify the configuration file to
5567- // / use.
5566+ // / use.
55685567// /
55695568// / \param[in] StyleName Style name to interpret according to the description
55705569// / above.
0 commit comments