Index: gpu/command_buffer/client/query_tracker.cc |
diff --git a/gpu/command_buffer/client/query_tracker.cc b/gpu/command_buffer/client/query_tracker.cc |
index 6395c047781d077eb559a55758971f3b4ff36758..286a4ba3ceef2b05680603f8a9ee2f6df9e08e4c 100644 |
--- a/gpu/command_buffer/client/query_tracker.cc |
+++ b/gpu/command_buffer/client/query_tracker.cc |
@@ -126,11 +126,11 @@ void QueryTracker::Query::End(GLES2Implementation* gl) { |
case GL_GET_ERROR_QUERY_CHROMIUM: { |
GLenum error = gl->GetClientSideGLError(); |
if (error == GL_NO_ERROR) { |
- // There was no error so start the query on the serivce. |
+ // There was no error so start the query on the service. |
// it will end immediately. |
gl->helper()->BeginQueryEXT(target(), id(), shm_id(), shm_offset()); |
} else { |
- // There's an error on the client, no need to bother the service. just |
+ // There's an error on the client, no need to bother the service. Just |
// set the query as completed and return the error. |
if (error != GL_NO_ERROR) { |
state_ = kComplete; |