[clang/docs] add a missing brace in ClangFormatStyleOptions.rst (#145145)

... in the example for `WrapNamespaceBodyWithEmptyLines: Never`
This commit is contained in:
Tal Kedar
2025-06-21 14:00:22 -04:00
committed by GitHub
parent 6c8c816b17
commit 2ed089fb18
2 changed files with 2 additions and 2 deletions

View File

@@ -6992,7 +6992,7 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++
namespace N1 {
namespace N2
namespace N2 {
function();
}
}

View File

@@ -5275,7 +5275,7 @@ struct FormatStyle {
/// Remove all empty lines at the beginning and the end of namespace body.
/// \code
/// namespace N1 {
/// namespace N2
/// namespace N2 {
/// function();
/// }
/// }