From 6ac66efba74ac66179d05f2c4e89e5bae2dd548a Mon Sep 17 00:00:00 2001 From: hadley Date: Fri, 22 Jul 2016 11:26:43 -0500 Subject: [PATCH] Typo Closes #128 --- functions.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.Rmd b/functions.Rmd index d6bffc2..8c330ca 100644 --- a/functions.Rmd +++ b/functions.Rmd @@ -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