Commit 8fc76076 authored by Aaryaman Sagar's avatar Aaryaman Sagar Committed by Facebook Github Bot

Fix namespace in folly::copy comments

Summary: Fix namespace in folly::copy comments

Reviewed By: yfeldblum

Differential Revision: D14202488

fbshipit-source-id: 14ebc5a58bfd3b62e4d6ecd03e1ceffa796f4b1f
parent 51a97c31
...@@ -51,7 +51,7 @@ namespace folly { ...@@ -51,7 +51,7 @@ namespace folly {
* Note: If passed an rvalue, invokes the move-ctor, not the copy-ctor. This * Note: If passed an rvalue, invokes the move-ctor, not the copy-ctor. This
* can be used to to force a move, where just using std::move would not: * can be used to to force a move, where just using std::move would not:
* *
* std::copy(std::move(data)); // force-move, not just a cast to && * folly::copy(std::move(data)); // force-move, not just a cast to &&
* *
* Note: The following text appears in the standard: * Note: The following text appears in the standard:
* *
......
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