From 80b142edbc75d74ad16c826f564b8fe774fcece0 Mon Sep 17 00:00:00 2001 From: Neal Richardson Date: Wed, 7 Aug 2019 18:57:14 -0700 Subject: [PATCH] s/arrow/Arrow/ --- r/R/install-arrow.R | 2 +- r/README.Rmd | 2 +- r/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/r/R/install-arrow.R b/r/R/install-arrow.R index a8484cac1d416..423f95a8b3670 100644 --- a/r/R/install-arrow.R +++ b/r/R/install-arrow.R @@ -101,7 +101,7 @@ SEE_ARROW_INSTALL <- paste( "to find pre-compiled binary packages for some common Linux distributions,", "including Debian, Ubuntu, and CentOS. You'll need to install", "'libparquet-dev' on Debian and Ubuntu, or 'parquet-devel' on CentOS. This", - "will also automatically install the arrow C++ library as a dependency." + "will also automatically install the Arrow C++ library as a dependency." ) THEN_REINSTALL <- paste( diff --git a/r/README.Rmd b/r/README.Rmd index 82790ac6a34e7..5f5d22ac25a1e 100644 --- a/r/README.Rmd +++ b/r/README.Rmd @@ -30,7 +30,7 @@ Install the latest release of `arrow` from CRAN with install.packages("arrow") ``` -On macOS and Windows, installing a binary package from CRAN will handle Arrow's C++ dependencies for you. On Linux, you'll need to first install the C++ library. See the [Arrow project installation page](https://arrow.apache.org/install/) to find pre-compiled binary packages for some common Linux distributions, including Debian, Ubuntu, and CentOS. You'll need to install `libparquet-dev` on Debian and Ubuntu, or `parquet-devel` on CentOS. This will also automatically install the arrow C++ library as a dependency. +On macOS and Windows, installing a binary package from CRAN will handle Arrow's C++ dependencies for you. On Linux, you'll need to first install the C++ library. See the [Arrow project installation page](https://arrow.apache.org/install/) to find pre-compiled binary packages for some common Linux distributions, including Debian, Ubuntu, and CentOS. You'll need to install `libparquet-dev` on Debian and Ubuntu, or `parquet-devel` on CentOS. This will also automatically install the Arrow C++ library as a dependency. If you install the `arrow` package from source and the C++ library is not found, the R package functions will notify you that Arrow is not available. Call diff --git a/r/README.md b/r/README.md index 9c931c21de685..91e750c0481eb 100644 --- a/r/README.md +++ b/r/README.md @@ -34,7 +34,7 @@ page](https://arrow.apache.org/install/) to find pre-compiled binary packages for some common Linux distributions, including Debian, Ubuntu, and CentOS. You’ll need to install `libparquet-dev` on Debian and Ubuntu, or `parquet-devel` on CentOS. This will also automatically -install the arrow C++ library as a dependency. +install the Arrow C++ library as a dependency. If you install the `arrow` package from source and the C++ library is not found, the R package functions will notify you that Arrow is not @@ -60,7 +60,7 @@ set.seed(24) tab <- arrow::table(x = 1:10, y = rnorm(10)) tab$schema -#> arrow::Schema +#> arrow::Schema #> x: int32 #> y: double tab