[doc]: Spotted errors while working on rstlint. (GH-30879)

Also ignored some `make suspicious` false positives while assuring
true positives were properly seen by rstlint.
This commit is contained in:
Julien Palard 2022-01-27 08:57:43 +01:00 committed by GitHub
parent b50322d203
commit bcafab849e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 20 additions and 12 deletions

View file

@ -23,7 +23,7 @@ selection of values. For example, the days of the week::
... SATURDAY = 6
... SUNDAY = 7
Or perhaps the RGB primary colors::
Or perhaps the RGB primary colors::
>>> from enum import Enum
>>> class Color(Enum):
@ -1398,4 +1398,3 @@ Subclassing EnumType
While most enum needs can be met by customizing :class:`Enum` subclasses,
either with class decorators or custom functions, :class:`EnumType` can be
subclassed to provide a different Enum experience.