r240879 - clang-format: Fix language of DisableFormat description
Birunthan Mohanathas
birunthan at mohanathas.com
Sat Jun 27 02:25:30 PDT 2015
Author: poiru
Date: Sat Jun 27 04:25:28 2015
New Revision: 240879
URL: http://llvm.org/viewvc/llvm-project?rev=240879&view=rev
Log:
clang-format: Fix language of DisableFormat description
This is a comment-only change to test commit access.
Modified:
cfe/trunk/docs/ClangFormatStyleOptions.rst
cfe/trunk/include/clang/Format/Format.h
Modified: cfe/trunk/docs/ClangFormatStyleOptions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangFormatStyleOptions.rst?rev=240879&r1=240878&r2=240879&view=diff
==============================================================================
--- cfe/trunk/docs/ClangFormatStyleOptions.rst (original)
+++ cfe/trunk/docs/ClangFormatStyleOptions.rst Sat Jun 27 04:25:28 2015
@@ -327,7 +327,7 @@ the configuration (without a prefix: ``A
alignment of & and \*. ``PointerAlignment`` is then used only as fallback.
**DisableFormat** (``bool``)
- Disables formatting at all.
+ Disables formatting completely.
**ExperimentalAutoDetectBinPacking** (``bool``)
If ``true``, clang-format detects whether function calls and
Modified: cfe/trunk/include/clang/Format/Format.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Format/Format.h?rev=240879&r1=240878&r2=240879&view=diff
==============================================================================
--- cfe/trunk/include/clang/Format/Format.h (original)
+++ cfe/trunk/include/clang/Format/Format.h Sat Jun 27 04:25:28 2015
@@ -409,7 +409,7 @@ struct FormatStyle {
/// which should not be split into lines or otherwise changed.
std::string CommentPragmas;
- /// \brief Disables formatting at all.
+ /// \brief Disables formatting completely.
bool DisableFormat;
/// \brief A vector of macros that should be interpreted as foreach loops
More information about the cfe-commits
mailing list