Skip to content

Commit d8e22a4

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent aa56eb8 commit d8e22a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/glossary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ Glossary
14941494
the ``3`` in ``items[3]``.
14951495
Usually used to select an element of a container.
14961496
Also called a :term:`key` when subscripting a :term:`mapping`,
1497-
or :term:`index` when subscripting a :term:`sequence`.
1497+
or an :term:`index` when subscripting a :term:`sequence`.
14981498

14991499
synchronization primitive
15001500
A basic building block for coordinating (synchronizing) the execution of

Doc/reference/datamodel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ to negative slice positions.
326326
Note that no error is raised if a slice position is less than zero or larger
327327
than the length of the sequence.
328328

329-
If *start* is missing or ``None``, slicing behaves as if *start* was zero.
329+
If *start* is missing or :data:`None`, slicing behaves as if *start* was zero.
330330
If *stop* is missing or ``None``, slicing behaves as if *stop* was equal to
331331
the length of the sequence.
332332

0 commit comments

Comments
 (0)