Codemod: use #include angle brackets in folly and thrift
[folly.git] / folly / wangle / InlineExecutor.h
index 8c338b15cbf1c4985e298053768b7dba3716175b..48f82bdd382ea59d02316b0f2c9a0597007092d7 100644 (file)
  */
 
 #pragma once
-#include "folly/wangle/Executor.h"
+#include <folly/wangle/Executor.h>
 
 namespace folly { namespace wangle {
 
+  /// When work is "queued", execute it immediately inline.
+  /// Usually when you think you want this, you actually want a
+  /// QueuedImmediateExecutor.
   class InlineExecutor : public Executor {
    public:
     void add(std::function<void()>&& f) override {