Title: [220079] trunk/Source/bmalloc
Revision
220079
Author
mark....@apple.com
Date
2017-07-31 15:59:40 -0700 (Mon, 31 Jul 2017)

Log Message

Fixed some comment typos.

Not reviewed.

* bmalloc/PerProcess.h:

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (220078 => 220079)


--- trunk/Source/bmalloc/ChangeLog	2017-07-31 22:47:04 UTC (rev 220078)
+++ trunk/Source/bmalloc/ChangeLog	2017-07-31 22:59:40 UTC (rev 220079)
@@ -1,3 +1,11 @@
+2017-07-31  Mark Lam  <mark....@apple.com>
+
+        Fixed some comment typos.
+
+        Not reviewed.
+
+        * bmalloc/PerProcess.h:
+
 2017-07-14  Filip Pizlo  <fpi...@apple.com>
 
         It should be easy to decide how WebKit yields

Modified: trunk/Source/bmalloc/bmalloc/PerProcess.h (220078 => 220079)


--- trunk/Source/bmalloc/bmalloc/PerProcess.h	2017-07-31 22:47:04 UTC (rev 220078)
+++ trunk/Source/bmalloc/bmalloc/PerProcess.h	2017-07-31 22:59:40 UTC (rev 220079)
@@ -46,11 +46,11 @@
 //
 // Object* object = PerProcess<Object>::get();
 // x = object->m_field; // OK
-// if (gobalFlag) { ... } // Undefined behavior.
+// if (globalFlag) { ... } // Undefined behavior.
 //
 // std::lock_guard<StaticMutex> lock(PerProcess<Object>::mutex());
 // Object* object = PerProcess<Object>::get(lock);
-// if (gobalFlag) { ... } // OK.
+// if (globalFlag) { ... } // OK.
 
 template<typename T>
 class PerProcess {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to