No periods in headings

This commit is contained in:
Hynek Schlawack 2023-12-31 12:12:51 +01:00 committed by GitHub
parent bfd70c9eeb
commit cee6192bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ Frozen dict classes have barely a performance impact, unfrozen slotted classes a
(how-slotted-cached_property)=
## Cached Properties on Slotted Classes.
## Cached Properties on Slotted Classes
By default, the standard library {func}`functools.cached_property` decorator does not work on slotted classes, because it requires a `__dict__` to store the cached value.
This could be surprising when using *attrs*, as slotted classes are the default.