Two more thrift paper typos
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
diff --git a/doc/thrift.pdf b/doc/thrift.pdf
index 8aba919..e7c690b 100644
--- a/doc/thrift.pdf
+++ b/doc/thrift.pdf
Binary files differ
diff --git a/doc/thrift.tex b/doc/thrift.tex
index d93bfa3..b0838f4 100644
--- a/doc/thrift.tex
+++ b/doc/thrift.tex
@@ -197,7 +197,7 @@
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 @@
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