Skip to content

Commit

Permalink
fix typo about folly::for_each
Browse files Browse the repository at this point in the history
  • Loading branch information
darionyaphet committed Sep 19, 2023
1 parent 64c8e8d commit 72d5862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions folly/container/Foreach.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ namespace folly {
* }
* return folly::loop_continue;
* };
* folly_for_each(range_one, func);
* folly_for_each(range_two, func);
* folly::for_each(range_one, func);
* folly::for_each(range_two, func);
*
* A simple use case would be when using futures, if the user was doing calls to
* n servers then they would accept the callback with the futures like this:
Expand Down

0 comments on commit 72d5862

Please sign in to comment.