Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Unified Diff: site/dev/contrib/style.md

Issue 1032463002: Fix two typos in coding style (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: site/dev/contrib/style.md
diff --git a/site/dev/contrib/style.md b/site/dev/contrib/style.md
index 455eed6b38052b031d7885d8095e8cd384c89305..ac31f4ad56de0075a5b38b7bc8757ccba37417ff 100644
--- a/site/dev/contrib/style.md
+++ b/site/dev/contrib/style.md
@@ -376,7 +376,7 @@ Method calls within method calls should be prefixed with dereference of the
<!--?prettify?-->
~~~~
this->method();
-Memory Managemt
+Memory Management
~~~~
All memory allocation should be routed through SkNEW and its variants. These are
@@ -456,7 +456,7 @@ checking for NULL pointers (as documentation):
<!--?prettify?-->
~~~~
-if (NULL == x) { // slightly preferred over if (x)
+if (NULL == x) { // slightly preferred over if (!x)
...
}
~~~~
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698