Closes #128
This commit is contained in:
hadley 2016-07-22 11:26:43 -05:00
parent b3e09d087b
commit 6ac66efba7
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ rescale01 <- function(x) {
rescale01(x)
```
This is an important part of the "do not repeat yourself" (or DRY) principle. The more repetition you have in your code, the more places you need to remember to update when things change (and they always could!), and the more likely you are to create bugs over time.
This is an important part of the "do not repeat yourself" (or DRY) principle. The more repetition you have in your code, the more places you need to remember to update when things change (and they always do!), and the more likely you are to create bugs over time.
### Practice