From: Praveen Kumar Date: Wed, 10 Jun 2015 21:13:43 +0000 (-0700) Subject: fix Baton.h typo X-Git-Tag: v0.47.0~49 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=commitdiff_plain;h=320a9600f9cb11bbfd3f17dc99cb7b252132eb37 fix Baton.h typo Summary: checked the sense Closes #224 Reviewed By: @paulbiss Differential Revision: D2144508 Pulled By: @sgolemon --- diff --git a/folly/Baton.h b/folly/Baton.h index 4e3684a2..97c0d1bf 100644 --- a/folly/Baton.h +++ b/folly/Baton.h @@ -51,7 +51,7 @@ struct Baton : boost::noncopyable { /// wait()ing. In practice this means that the waiter usually takes /// responsibility for destroying the Baton. ~Baton() { - // The docblock for this function says that is can't be called when + // The docblock for this function says that it can't be called when // there is a concurrent waiter. We assume a strong version of this // requirement in which the caller must _know_ that this is true, they // are not allowed to be merely lucky. If two threads are involved,