Skip to content

Commit fddd356

Browse files
MINOR: [Docs] Fix typos (#47511)
### Rationale for this change Improve readability and clarity by fixing minor typos/wording in a code comment and in the R README. No functional behavior is affected. ### What changes are included in this PR? - `r/R/dplyr-summarize.R`: Correct typo from `Evaulating` to `Evaluating`. - `r/README.md`: Correct typo from `installl` to `install`. ### Are these changes tested? Not applicable. These are documentation/comment-only changes; no runtime logic is modified. ### Are there any user-facing changes? No user-facing behavior changes. Documentation readability is slightly improved. **This PR includes breaking changes to public APIs.** No. **This PR contains a "Critical Fix".** No. Authored-by: Princetimix69 <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
1 parent d758cb8 commit fddd356

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

r/R/dplyr-summarize.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ do_arrow_summarize <- function(.data, ..., .groups = NULL) {
105105
# variables from the mask, which would be a bit tortured (even for me).
106106
# So we'll check here.
107107
# We can tell the expression is invalid if it references fields not in
108-
# the schema of the data after summarize(). Evaulating its type will
108+
# the schema of the data after summarize(). Evaluating its type will
109109
# throw an error if it's invalid.
110110
tryCatch(post_mutate[[post]]$type(out$.data$schema), error = function(e) {
111111
arrow_not_supported(

r/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ There are some special cases to note:
4646

4747
- If you are compiling arrow from source, please note that as of version 10.0.0, arrow requires C++17 to build. This has implications on Windows and CentOS 7. For Windows users it means you need to be running an R version of 4.0 or later. On CentOS 7, it means you need to install a newer compiler than the default system compiler gcc. See the [installation details article](https://arrow.apache.org/docs/r/articles/developers/install_details.html) for guidance.
4848

49-
- Development versions of arrow are released nightly. For information on how to installl nightly builds please see the [installing nightly builds](https://arrow.apache.org/docs/r/articles/install_nightly.html) article.
49+
- Development versions of arrow are released nightly. For information on how to install nightly builds please see the [installing nightly builds](https://arrow.apache.org/docs/r/articles/install_nightly.html) article.
5050

5151
## What can the arrow package do?
5252

0 commit comments

Comments
 (0)