summaryrefslogtreecommitdiffstats
path: root/Modules/ld_so_aix.in
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-02 10:07:09 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-02 10:07:09 (GMT)
commite26da7c03a714faa115fe6b708ef0730119aa4b3 (patch)
tree26d6a9584ddde0d84f1011fe87662b3b84a39428 /Modules/ld_so_aix.in
parent1b207c55a446ab8b8bae2efc8407ee130ba62012 (diff)
downloadcpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.zip
cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.tar.gz
cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.tar.bz2
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 961532b..add6b3e 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