This is an automated email from the ASF dual-hosted git repository.
assignuser pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new a2561e3499 GH-38227: [R] Fix non-unicode character errors in nightly
builds (#38232)
a2561e3499 is described below
commit a2561e3499d8d20c26c118979703425b3e755155
Author: Dewey Dunnington <[email protected]>
AuthorDate: Thu Oct 12 12:15:38 2023 -0300
GH-38227: [R] Fix non-unicode character errors in nightly builds (#38232)
### Rationale for this change
We have several nightly builds failing with errors building the manual as a
result of unicode characters. The unicode characters aren't new, so I'm not
sure why this happened now.
### What changes are included in this PR?
Install a distribution of latex that supports unicode characters (maybe)?
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* Closes: #38227
Lead-authored-by: Dewey Dunnington <[email protected]>
Co-authored-by: Dewey Dunnington <[email protected]>
Signed-off-by: Jacob Wujciak-Jens <[email protected]>
---
r/R/csv.R | 4 ++--
r/man/read_delim_arrow.Rd | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/r/R/csv.R b/r/R/csv.R
index 11e5b5d808..1850eb255a 100644
--- a/r/R/csv.R
+++ b/r/R/csv.R
@@ -22,8 +22,8 @@
#' `readr::read_delim()`, and `col_select` was inspired by `vroom::vroom()`.
#'
#' `read_csv_arrow()` and `read_tsv_arrow()` are wrappers around
-#' `read_delim_arrow()` that specify a delimiter. `read_csv2_arrow()` uses
`;` for
-#' the delimiter and `,` for the decimal point.
+#' `read_delim_arrow()` that specify a delimeter. `read_csv2_arrow()` uses `;`
for
+#' the delimeter and `,` for the decimal point.
#'
#' Note that not all `readr` options are currently implemented here. Please
file
#' an issue if you encounter one that `arrow` should support.
diff --git a/r/man/read_delim_arrow.Rd b/r/man/read_delim_arrow.Rd
index 04447fefc7..3ee9f6ea11 100644
--- a/r/man/read_delim_arrow.Rd
+++ b/r/man/read_delim_arrow.Rd
@@ -174,8 +174,8 @@ Arrow C++ options have been mapped to argument names that
follow those of
}
\details{
\code{read_csv_arrow()} and \code{read_tsv_arrow()} are wrappers around
-\code{read_delim_arrow()} that specify a delimiter. \code{read_csv2_arrow()}
uses \verb{;} for
-the delimiter and \verb{,} for the decimal point.
+\code{read_delim_arrow()} that specify a delimeter. \code{read_csv2_arrow()}
uses \verb{;} for
+the delimeter and \verb{,} for the decimal point.
Note that not all \code{readr} options are currently implemented here. Please
file
an issue if you encounter one that \code{arrow} should support.