Skip to content

Commit 9a0d0ab

Browse files
author
Release Manager
committed
gh-35641: Fix typo in documentation <!-- Please provide a concise, informative and self-explanatory title. --> <!-- Don't put issue numbers in the title. Put it in the Description below. --> <!-- For example, instead of "Fixes #12345", use "Add a new method to multiply two integers" --> ### 📚 Description I noticed a typo while reading the documentation and thought this was the best way to fix it. <!-- Describe your changes here in detail. --> <!-- Why is this change required? What problem does it solve? --> <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. It should be `[x]` not `[x ]`. --> - [x] The title is concise, informative, and self-explanatory. - [x] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [x] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #35641 Reported by: Anton Mosich Reviewer(s): Vincent Delecroix
2 parents 1a73b3b + ed8ccd6 commit 9a0d0ab

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
@@ -549,7 +549,7 @@ cdef class GapElement(RingElement):
549549
550550
INPUT:
551551
552-
- ``mut`` - (boolean) wheter to return an mutable copy
552+
- ``mut`` - (boolean) whether to return an mutable copy
553553
554554
EXAMPLES::
555555

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)