Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 57171a1

Browse files
committed
some typos
1 parent 0f20b37 commit 57171a1

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

src/sage/combinat/rsk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1887,7 +1887,7 @@ class RuleSuperRSK(RuleRSK):
18871887
18881888
* The output still consists of two tableaux `(P, Q)` of equal
18891889
shapes, but rather than both of them being semistandard, now
1890-
they are semistandard super tableax.
1890+
they are semistandard super tableaux.
18911891
18921892
* The main difference is in the way bumping works. Instead of having
18931893
only row bumping super RSK uses `\epsilon`-insertion, a combination

src/sage/geometry/newton_polygon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# Distributed under the terms of the GNU General Public License (GPL)
1313
#
14-
# http://www.gnu.org/licenses/
14+
# https://www.gnu.org/licenses/
1515
#############################################################################
1616
from __future__ import division
1717

@@ -246,7 +246,7 @@ def _mul_(self, other):
246246
sage: NP = NP1 * NP2; NP
247247
Infinite Newton polygon with 3 vertices: (0, 0), (1, 1), (2, 5/2) ending by an infinite line of slope 2
248248
249-
The slopes of ``NP`` is the union of thos of ``NP1`` and those of ``NP2``
249+
The slopes of ``NP`` is the union of those of ``NP1`` and those of ``NP2``
250250
which are less than the last slope::
251251
252252
sage: NP1.slopes()

src/sage/matrix/matrix_space.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1810,7 +1810,7 @@ def matrix(self, x=None, **kwds):
18101810
def matrix_space(self, nrows=None, ncols=None, sparse=False):
18111811
"""
18121812
Return the matrix space with given number of rows, columns and
1813-
sparcity over the same base ring as self, and defaults the same as
1813+
sparsity over the same base ring as self, and defaults the same as
18141814
self.
18151815
18161816
EXAMPLES::

src/sage/rings/invariants/reconstruction.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@
1010
- Jesper Noordsij (2018-06): initial version
1111
"""
1212

13-
#*****************************************************************************
13+
# ****************************************************************************
1414
# Copyright (C) 2018 Jesper Noordsij <[email protected]>
1515
#
1616
# Distributed under the terms of the GNU General Public License (GPL)
1717
# as published by the Free Software Foundation; either version 3 of
1818
# the License, or (at your option) any later version.
19-
# http://www.gnu.org/licenses/
20-
#*****************************************************************************
21-
22-
19+
# https://www.gnu.org/licenses/
20+
# ****************************************************************************
2321

2422

2523
def binary_quadratic_coefficients_from_invariants(discriminant, invariant_choice='default'):
@@ -28,7 +26,7 @@ def binary_quadratic_coefficients_from_invariants(discriminant, invariant_choice
2826
2927
INPUT:
3028
31-
- ``discriminant`` -- The value of the the discriminant of the
29+
- ``discriminant`` -- The value of the discriminant of the
3230
binary quadratic.
3331
3432
- ``invariant_choice`` -- The type of invariants provided. The accepted
@@ -69,7 +67,7 @@ def binary_cubic_coefficients_from_invariants(discriminant, invariant_choice='de
6967
7068
INPUT:
7169
72-
- ``discriminant`` -- The value of the the discriminant of the
70+
- ``discriminant`` -- The value of the discriminant of the
7371
binary cubic.
7472
7573
- ``invariant_choice`` -- The type of invariants provided. The accepted

src/sage/stats/intlist.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ cdef class IntList:
6161
6262
INPUT:
6363
64-
- values -- int, long, Integer, list of integers, or a TimeSeries
64+
- values -- int, long, Integer, list of integers, or a TimeSeries
6565
6666
If the input is a time series or list of floats, then the
67-
integer parts of the intries are taken (not the floor).
67+
integer parts of the entries are taken (not the floor).
6868
6969
EXAMPLES::
7070

0 commit comments

Comments
 (0)