Skip to content

Commit ed8ccd6

Browse files
committed
Fix typo in documentation
1 parent f2f5863 commit ed8ccd6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build/pkgs/gcc/spkg-configure.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
232232
fi
233233
AC_SUBST(CFLAGS_MARCH)
234234
235-
# Determine wether compiler supports OpenMP.
235+
# Determine whether compiler supports OpenMP.
236236
AC_LANG_PUSH([C])
237237
AX_OPENMP([
238238
AC_SUBST(OPENMP_CFLAGS)

m4/ax_gcc_option.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# DESCRIPTION
1010
#
11-
# AX_GCC_OPTION checks wheter gcc accepts the passed OPTION. If it accepts
11+
# AX_GCC_OPTION checks whether gcc accepts the passed OPTION. If it accepts
1212
# the OPTION then ACTION-IF-SUCCESSFUL will be executed, otherwise
1313
# ACTION-IF-UNSUCCESSFUL.
1414
#

m4/ax_gxx_option.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
# DESCRIPTION
1111
#
12-
# AX_GCC_OPTION checks wheter gcc accepts the passed OPTION. If it accepts
12+
# AX_GCC_OPTION checks whether gcc accepts the passed OPTION. If it accepts
1313
# the OPTION then ACTION-IF-SUCCESSFUL will be executed, otherwise
1414
# ACTION-IF-UNSUCCESSFUL.
1515
#

src/sage/libs/gap/element.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ cdef class GapElement(RingElement):
550550
551551
INPUT:
552552
553-
- ``mut`` - (boolean) wheter to return an mutable copy
553+
- ``mut`` - (boolean) whether to return an mutable copy
554554
555555
EXAMPLES::
556556

src/sage/rings/finite_rings/integer_mod.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ cdef class IntegerMod_abstract(FiniteRingElement):
10021002
@coerce_binop
10031003
def divides(self, other):
10041004
r"""
1005-
Test wheter ``self`` divides ``other``.
1005+
Test whether ``self`` divides ``other``.
10061006
10071007
EXAMPLES::
10081008

0 commit comments

Comments
 (0)