summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2016-07-02 19:17:58 +0000
committerSylvestre Ledru <sylvestre@debian.org>2016-07-02 19:17:58 +0000
commitd65c23f6e449210bcceef618b272cbb00a27bf5a (patch)
tree01de9737be8e214a99e798514b925512ece76508
parent4c6708efade45ae840470bdeedd6c891a31265fa (diff)
downloadclang-d65c23f6e449210bcceef618b272cbb00a27bf5a.tar.gz
fix two typos in the doc
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@274447 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/SourceBasedCodeCoverage.rst2
-rw-r--r--docs/doxygen.cfg.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/SourceBasedCodeCoverage.rst b/docs/SourceBasedCodeCoverage.rst
index b255bd771e..8d0a51fd33 100644
--- a/docs/SourceBasedCodeCoverage.rst
+++ b/docs/SourceBasedCodeCoverage.rst
@@ -111,7 +111,7 @@ generate a line-oriented report:
# Step 3(b): Create a line-oriented coverage report.
% llvm-cov show ./foo -instr-profile=foo.profdata
-To demangle any C++ identifiers in the ouput, use:
+To demangle any C++ identifiers in the output, use:
.. code-block:: console
diff --git a/docs/doxygen.cfg.in b/docs/doxygen.cfg.in
index adf9068613..c96ab49ba0 100644
--- a/docs/doxygen.cfg.in
+++ b/docs/doxygen.cfg.in
@@ -1937,7 +1937,7 @@ PREDEFINED =
EXPAND_AS_DEFINED =
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
-# remove all refrences to function-like macros that are alone on a line, have an
+# remove all references to function-like macros that are alone on a line, have an
# all uppercase name, and do not end with a semicolon. Such function macros are
# typically used for boiler-plate code, and will confuse the parser if not
# removed.