From: James Dennett Date: Fri, 15 Jun 2012 21:23:13 +0000 (+0000) Subject: Documentation fix (cleaning up my own breakage): close with , X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe865f1f35d1b91f42f58f08a1399b961b71b3bc;p=clang Documentation fix (cleaning up my own breakage): close with , not with another . git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158546 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/ExprCXX.h b/include/clang/AST/ExprCXX.h index fe6ccd5273..9645c26c3c 100644 --- a/include/clang/AST/ExprCXX.h +++ b/include/clang/AST/ExprCXX.h @@ -2781,7 +2781,7 @@ public: /// type-dependent. /// /// The explicit type conversions expressed by -/// CXXUnresolvedConstructExpr have the form T(a1, a2, ..., aN), +/// CXXUnresolvedConstructExpr have the form T(a1, a2, ..., aN), /// where \c T is some type and \c a1, \c a2, ..., \c aN are values, and /// either \c T is a dependent type or one or more of the a's is /// type-dependent. For example, this would occur in a template such