From 4ae1e55e28c18cab9bb01453f5bca3393231c47c Mon Sep 17 00:00:00 2001 From: Thomas Smets Date: Sun, 7 Oct 2018 15:27:32 +0200 Subject: [PATCH] Fixed small typo in Tesler's law. It is indeed complex ;). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.