Commit 61acda5e authored by Kevin Ventullo's avatar Kevin Ventullo Committed by Facebook Github Bot

Fixing comment

Summary:
This looked like a copypasta error. Since there is no duration passed
in, there is no notion of timeout.

Reviewed By: shixiao, Orvid

Differential Revision: D7747574

fbshipit-source-id: 279992d237dd0924ea0be9deafab94c1aef48838
parent c56ca684
......@@ -271,8 +271,8 @@ class SemiFuture : private futures::detail::FutureBase<T> {
/// exception).
T get(Duration dur) &&;
/// Block until the future is fulfilled, or until timed out. Returns the
/// Try of the value (moved out).
/// Block until the future is fulfilled. Returns the Try of the value (moved
/// out).
Try<T> getTry() &&;
/// Block until the future is fulfilled, or until timed out. Returns the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment