move wangle/concurrent to folly/executors
[folly.git] / folly / Singleton.h
index 975bab57d0bdab5d88de1cc94874cbe9d5870026..028cf7f1c210d4125b4522a3976b3a04bec26076 100644 (file)
@@ -405,7 +405,7 @@ class SingletonVault {
    *
    * Sample usage:
    *
-   *   wangle::IOThreadPoolExecutor executor(max_concurrency_level);
+   *   folly::IOThreadPoolExecutor executor(max_concurrency_level);
    *   folly::Baton<> done;
    *   doEagerInitVia(executor, &done);
    *   done.wait();  // or 'timed_wait', or spin with 'try_wait'