looks like a typo, was perhaps meant to be link to decorators but that is only a few lines later

This commit is contained in:
Andrew Macgregor
2012-10-16 22:04:15 +08:00
parent 7732355087
commit f1651e1dc8
+1 -1
View File
@@ -266,7 +266,7 @@ logic (called pure functions) allow the following benefits:
- Pure functions are easier to test with unit-tests: There is less
need for complex context setup and data cleaning afterwards.
- Pure functions are easier to manipulate, decorate_, and pass-around.
- Pure functions are easier to manipulate, decorate, and pass-around.
In summary, pure functions, without any context or side-effects, are more
efficient building blocks than classes and objects for some architectures.