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

Unified Diff: native_client_sdk/src/libraries/nacl_io/kernel_object.h

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/libraries/nacl_io/kernel_object.h
diff --git a/native_client_sdk/src/libraries/nacl_io/kernel_object.h b/native_client_sdk/src/libraries/nacl_io/kernel_object.h
index d50aabc27488172f6f8ff8ba4870cfe4b144cb60..9e853a944ea1956147c8cc5aada0b66c4ac31d18 100644
--- a/native_client_sdk/src/libraries/nacl_io/kernel_object.h
+++ b/native_client_sdk/src/libraries/nacl_io/kernel_object.h
@@ -16,7 +16,7 @@ class KernelHandle;
class Mount;
// KernelObject provides basic functionality for threadsafe
-// acces to kernel objects such as file descriptors and
+// access to kernel objects such as file descriptors and
// file handles. It also provides access to the CWD for
// path resolution.
class KernelObject {
@@ -41,7 +41,7 @@ class KernelObject {
Mount* AcquireMountAndPath(const std::string& relpath, Path *pobj);
void ReleaseMount(Mount* mnt);
- // Convert from FD to KernelHandle, and aquire the handle.
+ // Convert from FD to KernelHandle, and acquire the handle.
KernelHandle* AcquireHandle(int fd);
void ReleaseHandle(KernelHandle* handle);
@@ -64,7 +64,7 @@ class KernelObject {
// Kernel lock protects kernel wide resources such as the mount table...
pthread_mutex_t kernel_lock_;
- // Process lock proctects process wide resources such as CWD, file handles...
+ // Process lock protects process wide resources such as CWD, file handles...
pthread_mutex_t process_lock_;
DISALLOW_COPY_AND_ASSIGN(KernelObject);

Powered by Google App Engine
This is Rietveld 408576698