From 564d2be6452ada5e686dc5f7a58b6d4dbe5a4c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Mon, 9 May 2022 13:19:36 -0400 Subject: [PATCH] Clarify why/how typos/case matters, closes #860 --- workflow-basics.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow-basics.Rmd b/workflow-basics.Rmd index 1fcd8ed..645f05b 100644 --- a/workflow-basics.Rmd +++ b/workflow-basics.Rmd @@ -137,8 +137,8 @@ R_rocks ``` This illustrates the implied contract between you and R: R will do the tedious computations for you, but in exchange, you must be completely precise in your instructions. -Typos matter. -Case matters. +Typos matter; R can't read your mind and say "oh, they probably meant `r_rocks` when they typed `r_rock`". +Case matters; similarly R can't read your mind and say "oh, they probably meant `r_rocks` when they typed `R_rocks`". ## Calling functions