[clang] 9154a32 - [clang-format][doc] Fix typos
Owen Pan via cfe-commits
cfe-commits at lists.llvm.org
Sun May 5 00:19:03 PDT 2024
Author: Owen Pan
Date: 2024-05-05T00:18:55-07:00
New Revision: 9154a324bfce5dee27cb04708bd250b030d6cdd2
URL: https://github.com/llvm/llvm-project/commit/9154a324bfce5dee27cb04708bd250b030d6cdd2
DIFF: https://github.com/llvm/llvm-project/commit/9154a324bfce5dee27cb04708bd250b030d6cdd2.diff
LOG: [clang-format][doc] Fix typos
Added:
Modified:
clang/docs/ClangFormatStyleOptions.rst
clang/include/clang/Format/Format.h
Removed:
################################################################################
diff --git a/clang/docs/ClangFormatStyleOptions.rst b/clang/docs/ClangFormatStyleOptions.rst
index 39f7cded36edbf..ce9035a2770eec 100644
--- a/clang/docs/ClangFormatStyleOptions.rst
+++ b/clang/docs/ClangFormatStyleOptions.rst
@@ -935,8 +935,8 @@ the configuration (without a prefix: ``Auto``).
default: return "";
}
- * ``bool AlignCaseColons`` Whether aligned case labels are aligned on the colon, or on the
- , or on the tokens after the colon.
+ * ``bool AlignCaseColons`` Whether aligned case labels are aligned on the colon, or on the tokens
+ after the colon.
.. code-block:: c++
diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h
index 48f5fb44157570..8ebdc86b98329c 100644
--- a/clang/include/clang/Format/Format.h
+++ b/clang/include/clang/Format/Format.h
@@ -375,8 +375,8 @@ struct FormatStyle {
/// }
/// \endcode
bool AcrossComments;
- /// Whether aligned case labels are aligned on the colon, or on the
- /// , or on the tokens after the colon.
+ /// Whether aligned case labels are aligned on the colon, or on the tokens
+ /// after the colon.
/// \code
/// true:
/// switch (level) {
More information about the cfe-commits
mailing list