Title: [97111] trunk/Websites/webkit.org
Revision
97111
Author
rn...@webkit.org
Date
2011-10-10 17:29:34 -0700 (Mon, 10 Oct 2011)

Log Message

Fix a typo pointed by Sam (Weinig).

* coding/coding-style.html:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (97110 => 97111)


--- trunk/Websites/webkit.org/ChangeLog	2011-10-11 00:18:47 UTC (rev 97110)
+++ trunk/Websites/webkit.org/ChangeLog	2011-10-11 00:29:34 UTC (rev 97111)
@@ -1,5 +1,11 @@
 2011-10-10  Ryosuke Niwa  <rn...@webkit.org>
 
+        Fix a typo pointed by Sam (Weinig).
+
+        * coding/coding-style.html:
+
+2011-10-10  Ryosuke Niwa  <rn...@webkit.org>
+
         Style guide should mandate use of pass-by-reference for out arguments
         https://bugs.webkit.org/show_bug.cgi?id=69766
 

Modified: trunk/Websites/webkit.org/coding/coding-style.html (97110 => 97111)


--- trunk/Websites/webkit.org/coding/coding-style.html	2011-10-11 00:18:47 UTC (rev 97110)
+++ trunk/Websites/webkit.org/coding/coding-style.html	2011-10-11 00:29:34 UTC (rev 97111)
@@ -750,7 +750,7 @@
 {
     doSomething();
     if (outArgument)
-        outArgument = m_value;
+        *outArgument = m_value;
 }
 </pre>
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to