Index: clang/docs/ClangFormatStyleOptions.rst =================================================================== --- clang/docs/ClangFormatStyleOptions.rst +++ clang/docs/ClangFormatStyleOptions.rst @@ -1191,7 +1191,7 @@ }; * ``SLS_Inline`` (in configuration: ``Inline``) - Merge lambda into a single line if argument of a function. + Merge lambda into a single line if argument of a function is empty. .. code-block:: c++ Index: clang/include/clang/Format/Format.h =================================================================== --- clang/include/clang/Format/Format.h +++ clang/include/clang/Format/Format.h @@ -688,7 +688,7 @@ /// }; /// \endcode SLS_Empty, - /// Merge lambda into a single line if argument of a function. + /// Merge lambda into a single line if argument of a function is empty. /// \code /// auto lambda = [](int a) { /// return a;