diff options
author | James Dennett <jdennett@google.com> | 2012-06-15 21:23:13 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-06-15 21:23:13 +0000 |
commit | 98bde988977846f5560a37df223830f30d525b13 (patch) | |
tree | c0923b77ddd4da2dd5c8f1ff595e58cdb1d82dea | |
parent | 2178f14c10af824ec54fae6c9b21a2f08f990ea7 (diff) | |
download | bcm5719-llvm-98bde988977846f5560a37df223830f30d525b13.tar.gz bcm5719-llvm-98bde988977846f5560a37df223830f30d525b13.zip |
Documentation fix (cleaning up my own breakage): close <tt> with </tt>,
not with another <tt>.
llvm-svn: 158546
-rw-r--r-- | clang/include/clang/AST/ExprCXX.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/ExprCXX.h b/clang/include/clang/AST/ExprCXX.h index fe6ccd5273a..9645c26c3cf 100644 --- a/clang/include/clang/AST/ExprCXX.h +++ b/clang/include/clang/AST/ExprCXX.h @@ -2781,7 +2781,7 @@ public: /// type-dependent. /// /// The explicit type conversions expressed by -/// CXXUnresolvedConstructExpr have the form <tt>T(a1, a2, ..., aN)<tt>, +/// CXXUnresolvedConstructExpr have the form <tt>T(a1, a2, ..., aN)</tt>, /// 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 <tt>a</tt>'s is /// type-dependent. For example, this would occur in a template such |