folly/stats - fix c++ spec compliance for call to template name
[folly.git] / folly / PackedSyncPtr.h
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]; }
 
-  // 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(); }