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 | fe865f1f35d1b91f42f58f08a1399b961b71b3bc (patch) | |
tree | a524d628493edb8734043ad75669791fb7641c4f | |
parent | c2f51cfefd77e9b25f201ecf879343d6d9a45158 (diff) |
Documentation fix (cleaning up my own breakage): close <tt> with </tt>,
not with another <tt>.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158546 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ExprCXX.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <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 |