Typos.
authorTudor Bosman <tudorb@fb.com>
Tue, 5 Jun 2012 02:50:18 +0000 (19:50 -0700)
committerJordan DeLong <jdelong@fb.com>
Tue, 5 Jun 2012 05:59:12 +0000 (22:59 -0700)
Summary:
As pointed out by orbitcowboy at
https://github.com/facebook/folly/issues/6

Test Plan: No

Reviewers: jdelong, aalexandre

Reviewed By: jdelong

CC: folly@lists, bagashe
Differential Revision: https://phabricator.fb.com/D486754

folly/AtomicHashArray-inl.h
folly/FBString.h
folly/PackedSyncPtr.h
folly/docs/AtomicHashMap.md
folly/test/ConcurrentSkipListBenchmark.cpp
folly/test/PackedSyncPtrTest.cpp
folly/test/ThreadCachedIntTest.cpp

index 936939ff2e9c4aa3d686ca413abd8ab390e90f9d..4d83f38be110f630abf3095462705b8fea405920 100644 (file)
@@ -252,7 +252,7 @@ create(size_t maxSize, const Config& c) {
    * constructor.)  This is in order to avoid needing to default
    * construct a bunch of value_type when we first start up: if you
    * have an expensive default constructor for the value type this can
    * constructor.)  This is in order to avoid needing to default
    * construct a bunch of value_type when we first start up: if you
    * have an expensive default constructor for the value type this can
-   * noticably speed construction time for an AHA.
+   * noticeably speed construction time for an AHA.
    */
   FOR_EACH_RANGE(i, 0, map->capacity_) {
     cellKeyPtr(map->cells_[i])->store(map->kEmptyKey_,
    */
   FOR_EACH_RANGE(i, 0, map->capacity_) {
     cellKeyPtr(map->cells_[i])->store(map->kEmptyKey_,
index 84b5841afadb8516f582071693d21bc980a5c951..a2c7835d99b3de5dfa17d856f3a4e611a420f8d8 100644 (file)
@@ -1484,7 +1484,7 @@ public:
   }
 
   // Replaces at most n1 chars of *this, starting with pos, with n2
   }
 
   // Replaces at most n1 chars of *this, starting with pos, with n2
-  // occurences of c
+  // occurrences of c
   //
   // consolidated with
   //
   //
   // consolidated with
   //
@@ -2224,7 +2224,7 @@ basic_fbstring<E1, T, A, S>::npos =
               static_cast<typename basic_fbstring<E1, T, A, S>::size_type>(-1);
 
 #ifndef _LIBSTDCXX_FBSTRING
               static_cast<typename basic_fbstring<E1, T, A, S>::size_type>(-1);
 
 #ifndef _LIBSTDCXX_FBSTRING
-// basic_string compatiblity routines
+// basic_string compatibility routines
 
 template <typename E, class T, class A, class S>
 inline
 
 template <typename E, class T, class A, class S>
 inline
index 6e8cca53dcd8a06c61b02b8b56d9185af5471620..2c8745d2a494f72fac9f0e35a66c00d740cd0aca 100644 (file)
@@ -105,7 +105,7 @@ public:
   reference operator*() const { return *get(); }
   reference operator[](std::ptrdiff_t i) const { return get()[i]; }
 
   reference operator*() const { return *get(); }
   reference operator[](std::ptrdiff_t i) const { return get()[i]; }
 
-  // Syncronization (logically const, even though this mutates our
+  // Synchronization (logically const, even though this mutates our
   // locked state: you can lock a const PackedSyncPtr<T> to read it).
   void lock() const { data_.lock(); }
   void unlock() const { data_.unlock(); }
   // locked state: you can lock a const PackedSyncPtr<T> to read it).
   void lock() const { data_.lock(); }
   void unlock() const { data_.unlock(); }
index 6c5f2546734172c81cde30522409bb1472a3417f..978df241d636b89af8a5bab9473048e41c7656fa 100644 (file)
@@ -26,7 +26,7 @@ compare-and-swap'ed.
 the approximate number of elements you'll be inserting into the map, you
 probably shouldn't use this class.
 
 the approximate number of elements you'll be inserting into the map, you
 probably shouldn't use this class.
 
-* Must manage syncronization externally in order to modify values in the map
+* Must manage synchronization externally in order to modify values in the map
 after insertion.  Lock pools are a common way to do this, or you may
 consider using `folly::PackedSyncPtr<T>` as your `ValueT`.
 
 after insertion.  Lock pools are a common way to do this, or you may
 consider using `folly::PackedSyncPtr<T>` as your `ValueT`.
 
index e2fae29ba9ee65e4412ed55399ae43dda1243bb2..5d3c3a9768ac597f916431a5acd83ffa9c8a9d52 100644 (file)
@@ -579,7 +579,7 @@ BENCHMARK_PARAM(BM_CSLMergeLookup,       1000000);
 BENCHMARK_DRAW_LINE();
 
 
 BENCHMARK_DRAW_LINE();
 
 
-// multi-thread benchmarking
+// multithreaded benchmarking
 
 BENCHMARK_PARAM(BM_ContentionStdSet, 1024);
 BENCHMARK_PARAM(BM_ContentionCSL,    1024);
 
 BENCHMARK_PARAM(BM_ContentionStdSet, 1024);
 BENCHMARK_PARAM(BM_ContentionCSL,    1024);
index a2dd8e5b6862907eff92e700f98a87e3eeae1d3b..23bf00fa5d90aca5341ebb159fd3de58b377df7b 100644 (file)
@@ -111,7 +111,7 @@ TEST(PackedSyncPtr, Application) {
   }
 
   for (auto& kv : map) {
   }
 
   for (auto& kv : map) {
-    // Make sure every thread succesfully inserted it's ID into every vec
+    // Make sure every thread successfully inserted it's ID into every vec
     std::set<intptr_t> idsFound;
     for (auto& elem : kv.second) {
       EXPECT_TRUE(idsFound.insert(elem).second);  // check for dups
     std::set<intptr_t> idsFound;
     for (auto& elem : kv.second) {
       EXPECT_TRUE(idsFound.insert(elem).second);  // check for dups
index 703fffdda8fab6514b26cf6180a0e9fb84b7e060..c6766f8972ba48a2e4161d81c5300d50c9586305 100644 (file)
@@ -155,7 +155,7 @@ std::atomic<int32_t> globalInt32Baseline(0);
 __thread int64_t global__thread64;
 __thread int32_t global__thread32;
 
 __thread int64_t global__thread64;
 __thread int32_t global__thread32;
 
-// Alternate lock-free implementation.  Acheives about the same performance,
+// Alternate lock-free implementation.  Achieves about the same performance,
 // but uses about 20x more memory than ThreadCachedInt with 24 threads.
 struct ShardedAtomicInt {
   static const int64_t kBuckets_ = 2048;
 // but uses about 20x more memory than ThreadCachedInt with 24 threads.
 struct ShardedAtomicInt {
   static const int64_t kBuckets_ = 2048;