Index: native_client_sdk/src/examples/hello_nacl_io/queue.h |
diff --git a/native_client_sdk/src/examples/hello_nacl_io/queue.h b/native_client_sdk/src/examples/hello_nacl_io/queue.h |
index ed267f86664ce1ad69edc2817e8697de44548060..f622ee5d7685fcd717f007e10b25a36eccbadeac 100644 |
--- a/native_client_sdk/src/examples/hello_nacl_io/queue.h |
+++ b/native_client_sdk/src/examples/hello_nacl_io/queue.h |
@@ -11,7 +11,7 @@ |
* |
* There are techniques to implement a queue like this without using memory |
* barriers or locks on x86, but ARM's memory system is different from x86, so |
- * we cannot make the same assuptions about visibility order of writes. Using a |
+ * we cannot make the same assumptions about visibility order of writes. Using a |
* mutex is slower, but also simpler. |
* |
* We make the assumption that messages are only enqueued on the main thread |