Two more thrift paper typos
authorMark Slee <mcslee@apache.org>
Wed, 4 Apr 2007 19:56:41 +0000 (19:56 +0000)
committerMark Slee <mcslee@apache.org>
Wed, 4 Apr 2007 19:56:41 +0000 (19:56 +0000)
Summary: libthread => libpthread and texttt{HashMap} missing slash

Reviewed By: david reiss

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665083 13f79535-47bb-0310-9956-ffa450edef68

doc/thrift.pdf
doc/thrift.tex

index 8aba919..e7c690b 100644 (file)
Binary files a/doc/thrift.pdf and b/doc/thrift.pdf differ
index d93bfa3..b0838f4 100644 (file)
@@ -197,7 +197,7 @@ contain duplicates.
 an STL \texttt{set}, Java \texttt{HashSet}, \texttt{set} in Python, or native
 dictionary in PHP/Ruby. 
 \item \texttt{map<type1,type2>} A map of strictly unique keys to values
-Translates into an STL \texttt{map}, Java texttt{HashMap}, PHP associative
+Translates into an STL \texttt{map}, Java \texttt{HashMap}, PHP associative
 array, or Python/Ruby dictionary.
 \end{itemize}
 
@@ -863,7 +863,7 @@ be accessed by multiple threads. For \texttt{Thread} class implementations,
 creating and shutting down threads.
 
 Thread creation requires calling into a C library. (In our case the POSIX
-thread library, \texttt{libthread}, but the same would be true for WIN32 threads).
+thread library, \texttt{libpthread}, but the same would be true for WIN32 threads).
 Typically, the OS makes few, if any, guarantees about when \texttt{ThreadMain}, a C thread's entry-point function, will be called. Therefore, it is
 possible that our thread create call,
 \texttt{ThreadFactory::newThread()} could return to the caller