Commit dc843dad authored by Brett Chik's avatar Brett Chik Committed by Facebook GitHub Bot

Fix a typo.

Summary: I noticed two mispellings while reading through the code.  This fixes them.

Reviewed By: Orvid

Differential Revision: D30429734

fbshipit-source-id: b976cc4ae4534a9f065b8a7e6fee5a39d7241a28
parent 2906e83c
...@@ -486,7 +486,7 @@ using AtomicUnorderedInsertMap64 = AtomicUnorderedInsertMap< ...@@ -486,7 +486,7 @@ using AtomicUnorderedInsertMap64 = AtomicUnorderedInsertMap<
uint64_t, uint64_t,
Allocator>; Allocator>;
/// MutableAtom is a tiny wrapper than gives you the option of atomically /// MutableAtom is a tiny wrapper that gives you the option of atomically
/// updating values inserted into an AtomicUnorderedInsertMap<K, /// updating values inserted into an AtomicUnorderedInsertMap<K,
/// MutableAtom<V>>. This relies on AtomicUnorderedInsertMap's guarantee /// MutableAtom<V>>. This relies on AtomicUnorderedInsertMap's guarantee
/// that it doesn't move values. /// that it doesn't move values.
...@@ -497,7 +497,7 @@ struct MutableAtom { ...@@ -497,7 +497,7 @@ struct MutableAtom {
explicit MutableAtom(const T& init) : data(init) {} explicit MutableAtom(const T& init) : data(init) {}
}; };
/// MutableData is a tiny wrapper than gives you the option of using an /// MutableData is a tiny wrapper that gives you the option of using an
/// external concurrency control mechanism to updating values inserted /// external concurrency control mechanism to updating values inserted
/// into an AtomicUnorderedInsertMap. /// into an AtomicUnorderedInsertMap.
template <typename T> template <typename T>
......
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