Commit 624eb97fd5044b0ffa3b9b84c140df4069ed7ce9

Carlos Martín Nieto 2014-11-15T13:49:15

Merge pull request #2708 from phatblat/pr/threading-doc Fix typo in THREADING.md

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/THREADING.md b/THREADING.md
index 4759318..a264567 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
 =======================================