summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2011-03-04 13:35:05 +0000
committerRoger Meier <roger@apache.org>2011-03-04 13:35:05 +0000
commit3f067a86ebea6e4919fb4cc67192b2b5f386fbdf (patch)
treee1d581b36b2ff386a01208daf952d688983c6b31 /doc
parent062de1b0d327e72993489118f5949d2e1e4d3848 (diff)
downloadthrift-3f067a86ebea6e4919fb4cc67192b2b5f386fbdf.tar.gz
THRIFT-1084 Typo fixes
Patch: Bruce Mitchener git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1077939 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'doc')
-rw-r--r--doc/thrift.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/thrift.tex b/doc/thrift.tex
index d20b7377d..a706fcbbc 100644
--- a/doc/thrift.tex
+++ b/doc/thrift.tex
@@ -151,7 +151,7 @@ how to safely transport the objects across languages.
The type system rests upon a few base types. In considering which types to
support, we aimed for clarity and simplicity over abundance, focusing
-on the key types available in all programming languages, ommitting any
+on the key types available in all programming languages, omitting any
niche types available only in specific languages.
The base types supported by Thrift are:
@@ -299,8 +299,8 @@ socket, a segment of shared memory, or a file on the local disk. The Thrift
transport interface supports the following methods:
\begin{itemize}
-\item \texttt{open} Opens the tranpsort
-\item \texttt{close} Closes the tranport
+\item \texttt{open} Opens the transport
+\item \texttt{close} Closes the transport
\item \texttt{isOpen} Indicates whether the transport is open
\item \texttt{read} Reads from the transport
\item \texttt{write} Writes to the transport
@@ -345,7 +345,7 @@ post-processing or for reproduction and/or simulation of past events.
\subsubsection{Utilities}
The Transport interface is designed to support easy extension using common
-OOP techniques, such as composition. Some simple utilites include the
+OOP techniques, such as composition. Some simple utilities include the
\texttt{TBufferedTransport}, which buffers the writes and reads on an
underlying transport, the \texttt{TFramedTransport}, which transmits data with frame
size headers for chunking optimization or nonblocking operation, and the
@@ -873,7 +873,7 @@ possible that our thread create call,
\texttt{ThreadFactory::newThread()} could return to the caller
well before that time. To ensure that the returned \texttt{Thread} object is not
prematurely cleaned up if the caller gives up its reference prior to the
-\texttt{ThreadMain} call, the \texttt{Thread} object makes a weak referenence to
+\texttt{ThreadMain} call, the \texttt{Thread} object makes a weak reference to
itself in its \texttt{start} method.
With the weak reference in hand the \texttt{ThreadMain} function can attempt to get
@@ -1023,7 +1023,7 @@ described:
XML parsing overhead.
\item \textit{CORBA.} Relatively comprehensive, debatably overdesigned and
heavyweight. Comparably cumbersome software installation.
-\item \textit{COM.} Embraced mainly in Windows client softare. Not an entirely
+\item \textit{COM.} Embraced mainly in Windows client software. Not an entirely
open solution.
\item \textit{Pillar.} Lightweight and high-performance, but missing versioning
and abstraction.