Consider this repro code: ```cpp class A { public: /** * \brief Some fancy method. */ void foo(); }; ``` When the `ReflowComments` option is disabled, clang-format breaks the formatting: ``` $ clang-format --style="{ReflowComments: false}" foo.cpp class A { public: /** * \brief Some fancy method. */ void foo(); }; ``` Tested with clang-format version 13.0.0