From: Daniel Dunbar Date: Wed, 17 Feb 2010 08:07:44 +0000 (+0000) Subject: Fix comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71570182471d502a97f7f175aa527152544c75f2;p=clang Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96468 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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