diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2012-05-06 16:07:45 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2012-05-06 16:07:45 +0000 |
commit | d0f709e5fb1b4e02eaf545be61c0f3945522160d (patch) | |
tree | 0278aefd05dc448ed306949a56e0961cb8f4eb71 | |
parent | 2643475c2282e5aaa93f12017c43804cef8d13d5 (diff) |
Simple typo fix (syntex to syntax). Fixes PR12735
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156259 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang-c/Index.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 13ba6ba2ae..98aa963176 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -966,7 +966,7 @@ clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit); * passed to the \c clang executable if it were being invoked out-of-process. * These command-line options will be parsed and will affect how the translation * unit is parsed. Note that the following options are ignored: '-c', - * '-emit-ast', '-fsyntex-only' (which is the default), and '-o <output file>'. + * '-emit-ast', '-fsyntax-only' (which is the default), and '-o <output file>'. * * \param num_unsaved_files the number of unsaved file entries in \p * unsaved_files. @@ -1115,7 +1115,7 @@ CINDEX_LINKAGE unsigned clang_defaultEditingTranslationUnitOptions(void); * passed to the \c clang executable if it were being invoked out-of-process. * These command-line options will be parsed and will affect how the translation * unit is parsed. Note that the following options are ignored: '-c', - * '-emit-ast', '-fsyntex-only' (which is the default), and '-o <output file>'. + * '-emit-ast', '-fsyntax-only' (which is the default), and '-o <output file>'. * * \param num_command_line_args The number of command-line arguments in * \p command_line_args. |