summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-11-15 13:49:15 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2014-11-15 13:49:15 +0100
commit624eb97fd5044b0ffa3b9b84c140df4069ed7ce9 (patch)
tree3986f6c81a5589e149255b2b621e73e5962b1a92
parent65f6c1c7eb7beb412e30cacd5cbb2b00e1e975b0 (diff)
parentd698712bc79abafe977012cd7c1b4375f8d74ec1 (diff)
downloadlibgit2-624eb97fd5044b0ffa3b9b84c140df4069ed7ce9.tar.gz
Merge pull request #2708 from phatblat/pr/threading-doc
Fix typo in THREADING.md
-rw-r--r--THREADING.md7
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
=======================================