From 8b7a6bfb3cf27a6b1fbac5889d441e1d6707c8c2 Mon Sep 17 00:00:00 2001 From: Aep Hidyatuloh Date: Wed, 23 Nov 2022 09:47:10 +0700 Subject: [PATCH] Delete redundant words Running R code section (#1148) At the and of Running R Code section the "we'll use" are written 2 times. --- intro.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro.qmd b/intro.qmd index 6df74e4..a018aff 100644 --- a/intro.qmd +++ b/intro.qmd @@ -251,7 +251,7 @@ Throughout the book, we use a consistent set of conventions to refer to code: - Other R objects (such as data or function arguments) are in a code font, without parentheses, like `flights` or `x`. -- Sometimes, to make it clear which package an object comes from, we'll use we'll use the package name followed by two colons, like `dplyr::mutate()`, or\ +- Sometimes, to make it clear which package an object comes from, we'll use the package name followed by two colons, like `dplyr::mutate()`, or\ `nycflights13::flights`. This is also valid R code.