Skip to content

Commit 6db7c59

Browse files
committed
fixed escaped character business
1 parent ad5446f commit 6db7c59

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

reading.Rmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,10 @@ specify that there are no column names to assign, and give it the value of
343343
`FALSE`). `read_csv`, `read_tsv` and `read_delim` have a `col_names` argument
344344
\index{read function!col\_names argument} and the default is `TRUE`.
345345

346-
> **Note:** `\t` is an example of an *escape character*, \index{escape character}
347-
> typically used to represent non-printing characters (like the tab) or
348-
> characters with special meanings (such as quotation marks).
346+
> **Note:** `\t` is an example of an *escaped character*,
347+
> which always starts with a backslash (`\`). \index{escape character}
348+
> Escaped characters are used to represent non-printing characters
349+
> (like the tab) or characters with special meanings (such as quotation marks).
349350
350351
```{r}
351352
canlang_data <- read_delim("data/can_lang.tsv",

0 commit comments

Comments
 (0)