summaryrefslogtreecommitdiff
path: root/Modules/ld_so_aix.in
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-02 10:07:09 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-06-02 10:07:09 +0000
commit54cbf822529626bbf16b522f07a855348eb9e25d (patch)
tree59de8ec2191f43d4214c77a5ffdc032970d9449a /Modules/ld_so_aix.in
parent025017ad31ba00d28de1a0498fbea514ba6bc726 (diff)
downloadcpython-54cbf822529626bbf16b522f07a855348eb9e25d.tar.gz
Issue #27171: Fix typos in documentation, comments, and test function names
Diffstat (limited to 'Modules/ld_so_aix.in')
-rw-r--r--Modules/ld_so_aix.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/ld_so_aix.in b/Modules/ld_so_aix.in
index 961532bb91..add6b3efab 100644
--- a/Modules/ld_so_aix.in
+++ b/Modules/ld_so_aix.in
@@ -12,7 +12,7 @@
#
# ARGUMENTS: Same as for "ld". The following arguments are processed
# or supplied by this script (those marked with an asterisk
-# can be overriden from command line):
+# can be overridden from command line):
#
# Argument Default value
# (*) -o [OutputFileName] -o shr.o
@@ -85,7 +85,7 @@ if test ! -n "$*"; then
fi
# Default import file for Python
-# Can be overriden by providing a -bI: argument.
+# Can be overridden by providing a -bI: argument.
impfile="./python.exp"
# Parse arguments
@@ -156,7 +156,7 @@ if test -z "$expfile"; then
fi
# Default entry symbol for Python modules = init[modulename]
-# Can be overriden by providing a -e argument.
+# Can be overridden by providing a -e argument.
if test -z "$entry"; then
entry=PyInit_`echo $filename | sed "s/module.*//"`
fi