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

Unified Diff: native_client_sdk/src/examples/hello_world_gles/matrix.cc

Issue 13106002: [NaCl SDK] A bunch of spelling fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix presubmit Created 7 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
Index: native_client_sdk/src/examples/hello_world_gles/matrix.cc
diff --git a/native_client_sdk/src/examples/hello_world_gles/matrix.cc b/native_client_sdk/src/examples/hello_world_gles/matrix.cc
index a76e2bb1b7b5b6436e366d0ffad9c3374bfc2bb8..ea6010bd132f8947693bddb73b3dcec756eaa48c 100644
--- a/native_client_sdk/src/examples/hello_world_gles/matrix.cc
+++ b/native_client_sdk/src/examples/hello_world_gles/matrix.cc
@@ -58,7 +58,7 @@ void identity_matrix(Matrix_t mat) {
void multiply_matrix(const Matrix_t a, const Matrix_t b, Matrix_t mat) {
// Generate to a temporary first in case the output matrix and input
- // matrix are thes same.
+ // matrix are the same.
Matrix_t out;
out[0] = a[0] * b[0] + a[4] * b[1] + a[8] * b[2] + a[12] * b[3];

Powered by Google App Engine
This is Rietveld 408576698