summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2005-06-18 17:54:13 +0000
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2005-06-18 17:54:13 +0000
commitc49322951ffd68b8066a34ba0d8cba563f90313b (patch)
tree505ab1af724d227cd84e547effc79aa87cf44f86
parent3b1cbf9ba0089981e7d0135cbd2f469827a3d294 (diff)
downloadcpython-git-c49322951ffd68b8066a34ba0d8cba563f90313b.tar.gz
Fix grammar (it's -> its).
-rw-r--r--Doc/api/concrete.tex2
-rw-r--r--Doc/api/newtypes.tex2
-rw-r--r--Doc/doc/doc.tex4
-rw-r--r--Doc/mac/libframework.tex4
-rw-r--r--Doc/ref/ref2.tex2
5 files changed, 7 insertions, 7 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex
index 8c93715981..e174beed08 100644
--- a/Doc/api/concrete.tex
+++ b/Doc/api/concrete.tex
@@ -2200,7 +2200,7 @@ There are very few functions specific to instance objects.
\begin{cfuncdesc}{PyObject*}{PyInstance_NewRaw}{PyObject *class,
PyObject *dict}
- Create a new instance of a specific class without calling it's
+ Create a new instance of a specific class without calling its
constructor. \var{class} is the class of new object. The
\var{dict} parameter will be used as the object's \member{__dict__};
if \NULL{}, a new dictionary will be created for the instance.
diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex
index f78066c392..a95f836111 100644
--- a/Doc/api/newtypes.tex
+++ b/Doc/api/newtypes.tex
@@ -191,7 +191,7 @@ These macros are used in the definition of \ctype{PyObject} and
int ob_size;
\end{verbatim}
Note that \csimplemacro{PyObject_HEAD} is part of the expansion, and
- that it's own expansion varies depending on the definition of
+ that its own expansion varies depending on the definition of
\csimplemacro{Py_TRACE_REFS}.
\end{csimplemacrodesc}
diff --git a/Doc/doc/doc.tex b/Doc/doc/doc.tex
index d16c414616..ebebd91caf 100644
--- a/Doc/doc/doc.tex
+++ b/Doc/doc/doc.tex
@@ -617,7 +617,7 @@ verbatim
Documentation for a ``simple'' macro. Simple macros are macros
which are used for code expansion, but which do not take
arguments so cannot be described as functions. This is not to
- be used for simple constant definitions. Examples of it's use
+ be used for simple constant definitions. Examples of its use
in the Python documentation include
\csimplemacro{PyObject_HEAD} and
\csimplemacro{Py_BEGIN_ALLOW_THREADS}.
@@ -812,7 +812,7 @@ verbatim
The name of a ``simple'' macro. Simple macros are macros
which are used for code expansion, but which do not take
arguments so cannot be described as functions. This is not to
- be used for simple constant definitions. Examples of it's use
+ be used for simple constant definitions. Examples of its use
in the Python documentation include
\csimplemacro{PyObject_HEAD} and
\csimplemacro{Py_BEGIN_ALLOW_THREADS}.
diff --git a/Doc/mac/libframework.tex b/Doc/mac/libframework.tex
index e7c38ef6c8..692c31fe4c 100644
--- a/Doc/mac/libframework.tex
+++ b/Doc/mac/libframework.tex
@@ -29,8 +29,8 @@ into the control-flow at many different places. \refmodule{W}, for
instance, uses a different way to enable/disable menus and that plugs
right in leaving the rest intact. The weak points of
\module{FrameWork} are that it has no abstract command interface (but
-that shouldn't be difficult), that it's dialog support is minimal and
-that it's control/toolbar support is non-existent.
+that shouldn't be difficult), that its dialog support is minimal and
+that its control/toolbar support is non-existent.
\end{quotation}
diff --git a/Doc/ref/ref2.tex b/Doc/ref/ref2.tex
index 68f6570c9c..950a7324b9 100644
--- a/Doc/ref/ref2.tex
+++ b/Doc/ref/ref2.tex
@@ -349,7 +349,7 @@ trailing underscore characters:
\item[\code{__*__}]
System-defined names. These names are defined by the interpreter
- and it's implementation (including the standard library);
+ and its implementation (including the standard library);
applications should not expect to define additional names using this
convention. The set of names of this class defined by Python may be
extended in future versions.