This is an automated email from the ASF dual-hosted git repository.

patriczhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 01cf29d  Fix typo in amalgamation README.md (TREAD->THREAD) (#15058)
01cf29d is described below

commit 01cf29d0aaf8af7424fa82d8100cbb967860c712
Author: Disi A <[email protected]>
AuthorDate: Sun May 26 10:08:03 2019 -0400

    Fix typo in amalgamation README.md (TREAD->THREAD) (#15058)
---
 amalgamation/README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/amalgamation/README.md b/amalgamation/README.md
index 2ecf162..b58776e 100644
--- a/amalgamation/README.md
+++ b/amalgamation/README.md
@@ -114,17 +114,17 @@ To
 Change
 ```
 #ifdef __GNUC__
-  #define MX_TREAD_LOCAL __thread
+  #define MX_THREAD_LOCAL __thread
 #elif __STDC_VERSION__ >= 201112L
-  #define  MX_TREAD_LOCAL _Thread_local
+  #define  MX_THREAD_LOCAL _Thread_local
 #elif defined(_MSC_VER)
-  #define MX_TREAD_LOCAL __declspec(thread)
+  #define MX_THREAD_LOCAL __declspec(thread)
 #endif
 ```
 
 To
 ```
-#define MX_TREAD_LOCAL __declspec(thread)
+#define MX_THREAD_LOCAL __declspec(thread)
 ```
 
 **To build arm32 compatible version (e.g. iPhone 5):**

Reply via email to