[cfe-commits] r96468 - /cfe/trunk/include/clang-c/Index.h
Daniel Dunbar
daniel at zuster.org
Wed Feb 17 00:07:44 PST 2010
Author: ddunbar
Date: Wed Feb 17 02:07:44 2010
New Revision: 96468
URL: http://llvm.org/viewvc/llvm-project?rev=96468&view=rev
Log:
Fix comment.
Modified:
cfe/trunk/include/clang-c/Index.h
Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=96468&r1=96467&r2=96468&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Wed Feb 17 02:07:44 2010
@@ -1313,13 +1313,13 @@
* - 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
More information about the cfe-commits
mailing list