diff options
author | Ben Chatelain <benchatelain@gmail.com> | 2014-11-14 21:15:42 -0700 |
---|---|---|
committer | Ben Chatelain <benchatelain@gmail.com> | 2014-11-14 21:16:03 -0700 |
commit | d698712bc79abafe977012cd7c1b4375f8d74ec1 (patch) | |
tree | 3986f6c81a5589e149255b2b621e73e5962b1a92 | |
parent | 65f6c1c7eb7beb412e30cacd5cbb2b00e1e975b0 (diff) | |
download | libgit2-d698712bc79abafe977012cd7c1b4375f8d74ec1.tar.gz |
Fix GCD typo
-rw-r--r-- | THREADING.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/THREADING.md b/THREADING.md index 475931885..a264567ee 100644 --- a/THREADING.md +++ b/THREADING.md @@ -25,9 +25,10 @@ Error messages The error message is thread-local. The `giterr_last()` call must happen on the same thread as the error in order to get the message. Often this will be the case regardless, but if you use -something like the GDC on MacOS (where code is executed on an -arbitrary thread), the code must make sure to retrieve the error code -on the thread where the error happened. +something like the [GCD](http://en.wikipedia.org/wiki/Grand_Central_Dispatch) +on Mac OS X (where code is executed on an arbitrary thread), the code +must make sure to retrieve the error code on the thread where the error +happened. Threads and cryptographic libraries ======================================= |