Skip to content

Commit f6581d7

Browse files
language
1 parent 6c17b45 commit f6581d7

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

NEWS.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ This is a maintenance release without any breaking API changes.
77
* Removed implicit `dplyr` dependency via `purrr:::map_dfr()` (thanks
88
@jimhester, #324).
99
* Added required minimal version dependency for purr (`>= 0.2.3`) (#338).
10-
* The dependency tibble was optimized for speed in `v1.4.2` so styler should run
11-
~2x as fast [(#348)](https://github.com/tidyverse/tibble/pull/348). Hence,
10+
* We rely on the tibble package which was optimized for speed in `v1.4.2` so
11+
styler should run ~2x as fast
12+
[(#348)](https://github.com/tidyverse/tibble/pull/348). For that reason,
1213
styler now depends on `tibble >= 1.4.2`.
1314
* In the dependency `enc`, a bug was fixed that removed/changed non-ASCII
1415
characters. Hence, styler now depends on `enc >= 0.2` (#348).
1516

1617
## Minor changes
1718

18-
* Recognizing and respecting of DSLs used in R comments: rplumnber (`#*`, #306),
19-
shebang `#/!` (#345), knitr chunk headers for spinning (`#+` / `#-`, #362).
19+
* We're now recognizing and respecting DSLs used in R comments: rplumnber
20+
(`#*`, #306), shebang `#/!` (#345), knitr chunk headers for spinning (`#+` /
21+
`#-`, #362).
2022
* Named arguments can stay on the first line if call is multi-line (#318).
2123
* No space anymore with `tidyverse_style()` after `!!` since with `rlang 0.2`,
2224
`!!` now binds tighter (#322), spacing around `~` (#316), no space anymore

R/parse.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#' * A column "pos_id" for (positional id) which can be used for sorting
1010
#' (because "id" cannot be used in general). Note that the nth value of this
1111
#' column corresponds to n as long as no tokens are inserted.
12-
#' * A column "child" that contains the nested sub-tibbles.
12+
#' * A column "child" that contains *nest*s.
1313
#'
1414
#' @param text A character vector.
1515
#' @return A flat parse table

man/tokenize.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)