aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-02-17 08:07:44 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-02-17 08:07:44 +0000
commit71570182471d502a97f7f175aa527152544c75f2 (patch)
tree3eb08f784b7a39602ebd9b5d8cc2854764ff16f3
parentc84a8bf7fec968a2daa2431ccbd55633d6a8b1a9 (diff)
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96468 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang-c/Index.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 146a1a636e..2ff6a97d9f 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -1313,13 +1313,13 @@ enum CXCompletionChunkKind {
* - a Placeholder chunk for "int x"
* - an Optional chunk containing the remaining defaulted arguments, e.g.,
* - a Comma chunk for ","
- * - a Placeholder chunk for "float x"
+ * - a Placeholder chunk for "float y"
* - an Optional chunk containing the last defaulted argument:
* - a Comma chunk for ","
* - a Placeholder chunk for "double z"
* - a RightParen chunk for ")"
*
- * There are many ways two handle Optional chunks. Two simple approaches are:
+ * There are many ways to handle Optional chunks. Two simple approaches are:
* - Completely ignore optional chunks, in which case the template for the
* function "f" would only include the first parameter ("int x").
* - Fully expand all optional chunks, in which case the template for the