[clang-format] Fix documentation for FixNamespaceComments

Fixes PR40409

Differential Revision: https://reviews.llvm.org/D61174

llvm-svn: 359280
This commit is contained in:
Owen Pan 2019-04-26 07:05:47 +00:00
parent dee900ae59
commit d7f287f5b1
2 changed files with 2 additions and 2 deletions

View File

@ -1346,7 +1346,7 @@ the configuration (without a prefix: ``Auto``).
true: false:
namespace a { vs. namespace a {
foo(); foo();
} // namespace a; }
} // namespace a }
**ForEachMacros** (``std::vector<std::string>``)
A vector of macros that should be interpreted as foreach loops

View File

@ -1139,7 +1139,7 @@ struct FormatStyle {
/// true: false:
/// namespace a { vs. namespace a {
/// foo(); foo();
/// } // namespace a; }
/// } // namespace a }
/// \endcode
bool FixNamespaceComments;