Skip to content

Commit 5769917

Browse files
authored
Merge pull request #742 from alphor/fix-memoization-typo
fix memoization typo, link to wikipedia's overview
2 parents 32c55c0 + 7adc9c0 commit 5769917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ clearer and thus preferred.
602602
This mechanism is useful for separating concerns and avoiding
603603
external un-related logic 'polluting' the core logic of the function
604604
or method. A good example of a piece of functionality that is better handled
605-
with decoration is memorization or caching: you want to store the results of an
605+
with decoration is `memoization <https://en.wikipedia.org/wiki/Memoization#Overview>` or caching: you want to store the results of an
606606
expensive function in a table and use them directly instead of recomputing
607607
them when they have already been computed. This is clearly not part
608608
of the function logic.

0 commit comments

Comments
 (0)