| 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];
|
|
|