]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41199: Docstring convention not followed for dataclasses documentation page ...
authormarload <rladhkstn8@gmail.com>
Thu, 9 Jul 2020 12:13:47 +0000 (21:13 +0900)
committerGitHub <noreply@github.com>
Thu, 9 Jul 2020 12:13:47 +0000 (05:13 -0700)
Automerge-Triggered-By: @ericvsmith
Doc/library/dataclasses.rst

index fe63d20671dd744fc3ac87b54b1d98754acceb9f..6e74af062d9e72422072be38e075988e3de22bd1 100644 (file)
@@ -23,7 +23,7 @@ using :pep:`526` type annotations.  For example this code::
 
   @dataclass
   class InventoryItem:
-      '''Class for keeping track of an item in inventory.'''
+      """Class for keeping track of an item in inventory."""
       name: str
       unit_price: float
       quantity_on_hand: int = 0