[clang] 4daa8d1 - Correct inf typo
Jim Lin via cfe-commits
cfe-commits at lists.llvm.org
Thu Dec 12 18:59:02 PST 2019
Author: Andrew Gaul
Date: 2019-12-13T11:02:40+08:00
New Revision: 4daa8d1de6dda58aebfa7b19547ed3ce4e9bc91a
URL: https://github.com/llvm/llvm-project/commit/4daa8d1de6dda58aebfa7b19547ed3ce4e9bc91a
DIFF: https://github.com/llvm/llvm-project/commit/4daa8d1de6dda58aebfa7b19547ed3ce4e9bc91a.diff
LOG: Correct inf typo
Reviewers: krasimir
Reviewed By: krasimir
Subscribers: Jim, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D57732
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 2f7483435fd4..18cdc54a370f 100644
--- a/clang/docs/ClangFormatStyleOptions.rst
+++ b/clang/docs/ClangFormatStyleOptions.rst
@@ -958,7 +958,7 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++
- int f() vs. inf f()
+ int f() vs. int f()
{} {
}
diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h
index f17a10c7f5c8..add2937f3b43 100644
--- a/clang/include/clang/Format/Format.h
+++ b/clang/include/clang/Format/Format.h
@@ -981,7 +981,7 @@ struct FormatStyle {
/// set, and the function could/should not be put on a single line (as per
/// `AllowShortFunctionsOnASingleLine` and constructor formatting options).
/// \code
- /// int f() vs. inf f()
+ /// int f() vs. int f()
/// {} {
/// }
/// \endcode
More information about the cfe-commits
mailing list