Also use the more common "derive from" in place of "extend" in another
comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@188440
91177308-0d34-0410-b5e6-
96231b3b80d8
namespace tooling {
/// \brief Interface to generate clang::FrontendActions.
+///
+/// Having a factory interface allows, for example, a new FrontendAction to be
+/// created for each translation unit processed by ClangTool.
class FrontendActionFactory {
public:
virtual ~FrontendActionFactory();
/// \brief Returns a new FrontendActionFactory for a given type.
///
-/// T must extend clang::FrontendAction.
+/// T must derive from clang::FrontendAction.
///
/// Example:
/// FrontendActionFactory *Factory =