Skip to content

Commit 00047ce

Browse files
committed
Trac #21204: fix punctuation
1 parent 5ce5276 commit 00047ce

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/sage/combinat/k_regular_sequence.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@ def value(D, k):
143143
144144
INPUT:
145145
146-
- ``D`` -- a tuple or other iterable.
146+
- ``D`` -- a tuple or other iterable
147147
148-
- ``k`` -- the base.
148+
- ``k`` -- the base
149149
150150
OUTPUT:
151151
152152
An element in the common parent of the base `k` and of the entries
153-
of `D`.
153+
of `D`
154154
155155
EXAMPLES::
156156
@@ -168,16 +168,16 @@ def split_interlace(n, k, p):
168168
169169
INPUT:
170170
171-
- ``n`` -- an integer.
171+
- ``n`` -- an integer
172172
173-
- ``k`` -- an integer specifying the base.
173+
- ``k`` -- an integer specifying the base
174174
175175
- ``p`` -- a positive integer specifying in how many parts
176176
the input ``n`` is split. This has to be a divisor of ``k``.
177177
178178
OUTPUT:
179179
180-
A tuple of integers.
180+
A tuple of integers
181181
182182
EXAMPLES::
183183
@@ -896,21 +896,21 @@ def guess(self, f, n_max=100, max_dimension=10, sequence=None):
896896
INPUT:
897897
898898
- ``f`` -- a function (callable) which determines the sequence.
899-
It takes nonnegative integers as an input.
899+
It takes nonnegative integers as an input
900900
901901
- ``n_max`` -- (default: ``100``) a positive integer. The resulting
902902
`k`-regular sequence coincides with `f` on the first ``n_max``
903-
terms.
903+
terms
904904
905905
- ``max_dimension`` -- (default: ``10``) a positive integer specifying
906-
the maxium dimension which is tried when guessing the sequence.
906+
the maxium dimension which is tried when guessing the sequence
907907
908908
- ``sequence`` -- (default: ``None``) a `k`-regular sequence used
909-
for bootstrapping this guessing.
909+
for bootstrapping this guessing
910910
911911
OUTPUT:
912912
913-
A :class:`kRegularSequence`.
913+
A :class:`kRegularSequence`
914914
915915
EXAMPLES:
916916

0 commit comments

Comments
 (0)