summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Ribeiro <57065994+gustavothecoder@users.noreply.github.com>2022-12-03 14:47:07 -0300
committerGitHub <noreply@github.com>2022-12-03 14:47:07 -0300
commit97adc7dbb152014aa3e99387ba7b66d5955ed519 (patch)
treee8bcc0d228563105bb5ff7fc6f6d1586a9349810
parent80e8ccff15ce8c53f02548ca14e1454f9a43c048 (diff)
Fix typo: The Pragmatic Developer to The Pragmatic Programmer
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 96f9943..78c46d9 100644
--- a/README.md
+++ b/README.md
@@ -950,7 +950,7 @@ See also:
> Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
-DRY is an acronym for _Don't Repeat Yourself_. This principle aims to help developers reducing the repetition of code and keep the information in a single place and was cited in 1999 by Andrew Hunt and Dave Thomas in the book [The Pragmatic Developer](https://en.wikipedia.org/wiki/The_Pragmatic_Programmer)
+DRY is an acronym for _Don't Repeat Yourself_. This principle aims to help developers reducing the repetition of code and keep the information in a single place and was cited in 1999 by Andrew Hunt and Dave Thomas in the book [The Pragmatic Programmer](https://en.wikipedia.org/wiki/The_Pragmatic_Programmer)
> The opposite of DRY would be _WET_ (Write Everything Twice or We Enjoy Typing).
@@ -958,7 +958,7 @@ In practice, if you have the same piece of information in two (or more) differen
See also:
-- [The Pragmatic Developer](https://en.wikipedia.org/wiki/The_Pragmatic_Programmer)
+- [The Pragmatic Programmer](https://en.wikipedia.org/wiki/The_Pragmatic_Programmer)
### The KISS principle