Skip to content

Commit 90c65d0

Browse files
authored
Fix typos (#1795)
1 parent 311c12b commit 90c65d0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

NEWS.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
* `obj_type_friendly()` now only displays the first class of S3 objects (#1622).
5151

52-
* `expr_label()` now has back-compatility with respect to changes made by R version 4.4 and `is.atomic(NULL)` (#1655)
52+
* `expr_label()` now has back-compatibility with respect to changes made by R version 4.4 and `is.atomic(NULL)` (#1655)
5353

5454
* Performance improvement in `.rlang_cli_compat()` (#1657).
5555

@@ -489,7 +489,7 @@ extensive changes to the display of error messages.
489489
We've added the function `is_call_simple()` to make it easier to
490490
work safely with `call_name()`. The invariant is that `call_name()`
491491
always returns a string when `is_call_simple()` returns `TRUE`.
492-
Conversely it always returns `NULL` when `is_call_simple()` retuns
492+
Conversely it always returns `NULL` when `is_call_simple()` returns
493493
`FALSE`.
494494

495495
* `is_expression()` now returns `FALSE` for manually constructed
@@ -870,7 +870,7 @@ extensive changes to the display of error messages.
870870
* Added `compat-cli.R` file to format message elements consistently
871871
with cli in zero-deps packages.
872872

873-
* `compat-purrr.R` now longer includes `pluck*` helpers; these used a defintion
873+
* `compat-purrr.R` now longer includes `pluck*` helpers; these used a definition
874874
of pluck that predated purrr (#1159). `*_cpl()` has also been removed.
875875
The `map*` wrappers now call `as_function()` so that you can pass short
876876
anonymous functions that use `~` (#1157).
@@ -1034,7 +1034,7 @@ extensive changes to the display of error messages.
10341034
dplyr issue involving rowwise data frames and list-columns of
10351035
functions (tidyverse/dplyr#5608).
10361036

1037-
* `as_data_mask()` now intialises environments of the correct size to
1037+
* `as_data_mask()` now initialises environments of the correct size to
10381038
improve efficiency (#1048).
10391039

10401040
* `eval_bare()`, `eval_tidy()` (#961), and `with_handlers()` (#518)
@@ -1091,7 +1091,7 @@ extensive changes to the display of error messages.
10911091
is displayed.
10921092

10931093
This change simplifies the display (#851) and makes it possible to
1094-
rethow errors from a calling handler rather than an exiting handler,
1094+
rethrow errors from a calling handler rather than an exiting handler,
10951095
which we now think is more appropriate because it allows users to
10961096
`recover()` into the error.
10971097

@@ -1290,7 +1290,7 @@ extensive changes to the display of error messages.
12901290
# rlang 0.4.1
12911291

12921292
* New experimental framework for creating bulleted error messages. See
1293-
`?cnd_message` for the motivation and an overwiew of the tools we
1293+
`?cnd_message` for the motivation and an overview of the tools we
12941294
have created to support this approach. In particular, `abort()` now
12951295
takes character vectors to assemble a bullet list. Elements named
12961296
`x` are prefixed with a red cross, elements named `i` are prefixed
@@ -1485,7 +1485,7 @@ really a data frame.
14851485
field of `rlang::last_error()`.
14861486

14871487
* `ns_env()` and `ns_env_name()` (experimental functions) now support
1488-
functions and environments consisently. They also require an
1488+
functions and environments consistently. They also require an
14891489
argument from now on.
14901490

14911491
* `is_interactive()` is aware of the `TESTTHAT` environment variable and
@@ -2393,7 +2393,7 @@ prepared to deal with occasional backward incompatible updates.
23932393

23942394
* `exprs()` and `quos()` gain a `.unquote_names` arguments to switch
23952395
off interpretation of `:=` as a name operator. This should be useful
2396-
for programming on the language targetting APIs such as
2396+
for programming on the language targeting APIs such as
23972397
data.table.
23982398

23992399
* `exprs()` gains a `.named` option to auto-label its arguments (#267).
@@ -2479,7 +2479,7 @@ prepared to deal with occasional backward incompatible updates.
24792479

24802480
## Environments
24812481

2482-
* `env_get_list()` retrieves muliple bindings from an environment into
2482+
* `env_get_list()` retrieves multiple bindings from an environment into
24832483
a named list.
24842484

24852485
* `with_bindings()` and `scoped_bindings()` establish temporary
@@ -2657,7 +2657,7 @@ lifecycle status of exported functions.
26572657

26582658
* `quo_expr()` is soft-deprecated in favour of `quo_squash()`.
26592659
`quo_expr()` was a misnomer because it implied that it was a mere
2660-
expression acccessor for quosures whereas it was really a lossy
2660+
expression accessor for quosures whereas it was really a lossy
26612661
operation that squashed all nested quosures.
26622662

26632663
* With the renaming of the `lang` particle to `call`, all these

0 commit comments

Comments
 (0)