From f6f942bec983599c05b0df3d5293c65db79c7783 Mon Sep 17 00:00:00 2001
From: Yedidya Feldblum <yfeldblum@fb.com>
Date: Tue, 29 Sep 2015 12:04:29 -0700
Subject: [PATCH] CodeMod apache::thrift::async::TEventBase to folly::EventBase
 (remainder)

Summary: [Thrift] CodeMod `apache::thrift::async::TEventBase` to `folly::EventBase` (remainder).

A few straggler bits left out of D2349828.

Reviewed By: @Gownta

Differential Revision: D2489063
---
 folly/io/async/HHWheelTimer.h              | 4 ++--
 folly/io/async/test/UndelayedDestruction.h | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/folly/io/async/HHWheelTimer.h b/folly/io/async/HHWheelTimer.h
index 0424ac59..22824c22 100644
--- a/folly/io/async/HHWheelTimer.h
+++ b/folly/io/async/HHWheelTimer.h
@@ -33,7 +33,7 @@ namespace folly {
  * Hashed Hierarchical Wheel Timer
  *
  * Comparison:
- * TAsyncTimeout - a single timeout.
+ * AsyncTimeout - a single timeout.
  * HHWheelTimer - a set of efficient timeouts with different interval,
  *    but timeouts are not exact.
  *
@@ -287,7 +287,7 @@ class HHWheelTimer : private folly::AsyncTimeout,
   HHWheelTimer(HHWheelTimer const &) = delete;
   HHWheelTimer& operator=(HHWheelTimer const &) = delete;
 
-  // Methods inherited from TAsyncTimeout
+  // Methods inherited from AsyncTimeout
   virtual void timeoutExpired() noexcept;
 
   std::chrono::milliseconds interval_;
diff --git a/folly/io/async/test/UndelayedDestruction.h b/folly/io/async/test/UndelayedDestruction.h
index 6ca4700f..6a9dae9b 100644
--- a/folly/io/async/test/UndelayedDestruction.h
+++ b/folly/io/async/test/UndelayedDestruction.h
@@ -79,7 +79,7 @@ class UndelayedDestruction : public TDD {
    * The exact conditions for meeting this may be dependant upon your class
    * semantics.  Typically you are only guaranteed that it is safe to destroy
    * the object directly from the event loop (e.g., directly from a
-   * TEventBase::LoopCallback), or when the event loop is stopped.
+   * EventBase::LoopCallback), or when the event loop is stopped.
    */
   virtual ~UndelayedDestruction() {
     // Crash if the caller is destroying us with outstanding destructor guards.
-- 
2.34.1