From cee6192bd10564c747521204071eb72202595b6a Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sun, 31 Dec 2023 12:12:51 +0100 Subject: [PATCH] No periods in headings --- docs/how-does-it-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-does-it-work.md b/docs/how-does-it-work.md index e2e8ea70..0adac340 100644 --- a/docs/how-does-it-work.md +++ b/docs/how-does-it-work.md @@ -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.