Fix typo in docs/Function.md
authorpravic <ehysta@gmail.com>
Thu, 9 Jun 2016 22:01:51 +0000 (15:01 -0700)
committerFacebook Github Bot 6 <facebook-github-bot-6-bot@fb.com>
Thu, 9 Jun 2016 22:08:29 +0000 (15:08 -0700)
Summary: Closes https://github.com/facebook/folly/pull/421

Reviewed By: yfeldblum

Differential Revision: D3413832

Pulled By: elliottneilclark

fbshipit-source-id: 7af1462c250c8d6b5d6f5dfcb3f3117dff7877c9

folly/docs/Function.md

index a54a6184390be30043b9e94127f31c8f2681d2f7..3390707cd63a6007c38c00bfd168b358715af163 100644 (file)
@@ -15,7 +15,7 @@ some_future.then(
     { foo_ptr->setX(x); }
 );
 ```
-This piece of code did not compile before `folly::Future` started using `folly::Function` insted of `std::function` to store the callback. Because the lambda captures something non-copyable (the `unique_ptr`), it is not copyable itself. And `std::function` can only store copyable callables.
+This piece of code did not compile before `folly::Future` started using `folly::Function` instead of `std::function` to store the callback. Because the lambda captures something non-copyable (the `unique_ptr`), it is not copyable itself. And `std::function` can only store copyable callables.
 
 The implementation of folly::Future did not make use of the copy-constructibility of `std::function` at any point. There was no benefit from the fact that the `std::function` is copy-constructible, but the fact that it can only wrap copy-constructible callables posed a restriction.