From deb0133f63b560aadeaa9cf24bc7bb1a80ec6e5e Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sat, 13 Jan 2024 07:26:19 +0100 Subject: [PATCH] docs: compound adjective --- 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 0adac340..11216615 100644 --- a/docs/how-does-it-work.md +++ b/docs/how-does-it-work.md @@ -106,7 +106,7 @@ Frozen dict classes have barely a performance impact, unfrozen slotted classes a 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. -Therefore, *attrs* converts `functools.cached_property` decorated methods when constructing slotted classes. +Therefore, *attrs* converts `cached_property`-decorated methods when constructing slotted classes. Getting this working is achieved by: