From a90f5890aae5254b8946fa9feafad99f24093b83 Mon Sep 17 00:00:00 2001 From: Howard Baek <50791792+howardbaek@users.noreply.github.com> Date: Tue, 17 Aug 2021 17:06:37 +0900 Subject: [PATCH] Update scaling-functions.Rmd Minor grammar fix --- scaling-functions.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaling-functions.Rmd b/scaling-functions.Rmd index 1927d43c..ceba7634 100644 --- a/scaling-functions.Rmd +++ b/scaling-functions.Rmd @@ -295,7 +295,7 @@ But this feels weird as the function is still fundamentally coupled to this app ## Summary As your apps get bigger, extracting non-reactive functions out of the flow of the app will make your life substantially easier. -Functions allow you to reactive and non-reactive code and spread your code out over multiple files. +Functions allow you to write reactive and non-reactive code and spread your code out over multiple files. This often makes it much easier to see the big picture shape of your app, and by moving complex logic out of the app into regular R code it makes it much easier to experiment, iterate, and test. When you start extracting out function, it's likely to feel a bit slow and frustrating, but over time you'll get faster and faster, and soon it will become a key tool in your toolbox.