From 5279c26d3a77ecd93d7bc62aa19313b5f72ba7de Mon Sep 17 00:00:00 2001 From: Alexey Spiridonov Date: Fri, 16 Jan 2015 16:04:22 -0800 Subject: [PATCH] Fix comment typo Test Plan: checked this is the right function name Reviewed By: ngbronson@fb.com Subscribers: folly-diffs@ FB internal diff: D1788386 Signature: t1:1788386:1421453582:82d0c4685c1bd2d888f5974fd2a998ebbc27a9b5 --- folly/MPMCQueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/MPMCQueue.h b/folly/MPMCQueue.h index 6f28305f..cfd108e8 100644 --- a/folly/MPMCQueue.h +++ b/folly/MPMCQueue.h @@ -289,7 +289,7 @@ class MPMCQueue : boost::noncopyable { /// return false, but writeIfNotFull will wait for the dequeue to finish. /// This method is required if you are composing queues and managing /// your own wakeup, because it guarantees that after every successful - /// write a readIfNotFull will succeed. + /// write a readIfNotEmpty will succeed. template bool writeIfNotFull(Args&&... args) noexcept { uint64_t ticket; -- 2.34.1