Comment fix, ParseAST does not take ownership of the consumer.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58281 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/ParseAST.cpp b/lib/Sema/ParseAST.cpp
index 567cfc2..272615c 100644
--- a/lib/Sema/ParseAST.cpp
+++ b/lib/Sema/ParseAST.cpp
@@ -24,8 +24,7 @@
 //===----------------------------------------------------------------------===//
 
 /// ParseAST - Parse the entire file specified, notifying the ASTConsumer as
-/// the file is parsed.  This takes ownership of the ASTConsumer and
-/// ultimately deletes it.
+/// the file is parsed.
 ///
 /// \param FreeMemory If false, the memory used for AST elements is
 /// not released.