Skip to content

Commit

Permalink
gh-35641: Fix typo in documentation
Browse files Browse the repository at this point in the history
    
<!-- 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
  • Loading branch information
Release Manager committed May 27, 2023
2 parents 1a73b3b + ed8ccd6 commit 9a0d0ab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/pkgs/gcc/spkg-configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
fi
AC_SUBST(CFLAGS_MARCH)
# Determine wether compiler supports OpenMP.
# Determine whether compiler supports OpenMP.
AC_LANG_PUSH([C])
AX_OPENMP([
AC_SUBST(OPENMP_CFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion m4/ax_gcc_option.m4
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# DESCRIPTION
#
# AX_GCC_OPTION checks wheter gcc accepts the passed OPTION. If it accepts
# AX_GCC_OPTION checks whether gcc accepts the passed OPTION. If it accepts
# the OPTION then ACTION-IF-SUCCESSFUL will be executed, otherwise
# ACTION-IF-UNSUCCESSFUL.
#
Expand Down
2 changes: 1 addition & 1 deletion m4/ax_gxx_option.m4
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# DESCRIPTION
#
# AX_GCC_OPTION checks wheter gcc accepts the passed OPTION. If it accepts
# AX_GCC_OPTION checks whether gcc accepts the passed OPTION. If it accepts
# the OPTION then ACTION-IF-SUCCESSFUL will be executed, otherwise
# ACTION-IF-UNSUCCESSFUL.
#
Expand Down
2 changes: 1 addition & 1 deletion src/sage/libs/gap/element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ cdef class GapElement(RingElement):
INPUT:
- ``mut`` - (boolean) wheter to return an mutable copy
- ``mut`` - (boolean) whether to return an mutable copy
EXAMPLES::
Expand Down
2 changes: 1 addition & 1 deletion src/sage/rings/finite_rings/integer_mod.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ cdef class IntegerMod_abstract(FiniteRingElement):
@coerce_binop
def divides(self, other):
r"""
Test wheter ``self`` divides ``other``.
Test whether ``self`` divides ``other``.
EXAMPLES::
Expand Down

0 comments on commit 9a0d0ab

Please sign in to comment.