summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Kerr <dwmkerr@gmail.com>2018-10-07 22:27:56 +0800
committerGitHub <noreply@github.com>2018-10-07 22:27:56 +0800
commit9c3148ea950d21de91a54a1984a87ffd302a005f (patch)
tree933b60ab4fc50e668150fe317ac39de586cede82
parent95307f73ab12f63b3d64de5ea186bbb9df13e402 (diff)
parent4ae1e55e28c18cab9bb01453f5bca3393231c47c (diff)
Merge pull request #11 from smetsth/typo/teslers-law
Fixed small typo in Tesler's law. It is indeed complex ;).
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b467ce8..9c8b375 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ You might hear this law referred to when looking at estimates for how long somet
This law states that there is a certain amount of complexity in a system which cannot be reduced.
-Some complexity in a system is 'inadvertent'. It is a consequence of poor structure, mistakes, or just bad modeling of a problem to solve. Inadvertent complexity can be reduced (or eliminated). However, some complexity is 'intrinsic' - is is a consequence of the complexity inherent in the problem being solved. This complexity can be moved, but not eliminated.
+Some complexity in a system is 'inadvertent'. It is a consequence of poor structure, mistakes, or just bad modeling of a problem to solve. Inadvertent complexity can be reduced (or eliminated). However, some complexity is 'intrinsic' as a consequence of the complexity inherent in the problem being solved. This complexity can be moved, but not eliminated.
One interesting element to this law is the suggestion that even by simplifying the entire system, the intrinsic complexity is not reduced, it is _moved to the user_, who must behave in a more complex way.