Skip to content

Commit 3b1a369

Browse files
authored
docs: replace prql-compiler to prqlc (#260)
A follow up for #257
1 parent 76d6ad7 commit 3b1a369

8 files changed

Lines changed: 12 additions & 13 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: prqlr
2-
Title: R Bindings for the 'prql-compiler' Rust Library
2+
Title: R Bindings for the 'prqlc' Rust Library
33
Description:
44
Provides a function to convert 'PRQL' strings to 'SQL' strings.
55
Combined with other R functions that take 'SQL' as an argument,

R/compile.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ prql_compile <- function(
4343
compile(prql_query, target %||% "sql.any", format, signature_comment)
4444
}
4545

46-
#' @title prql-compiler's version
47-
#' @return a [numeric_version] with the version of the built-in prql-compiler.
46+
#' @title prqlc's version
47+
#' @return a [numeric_version] with the version of the built-in prqlc.
4848
#' @examples
4949
#' prql_version()
5050
#' @export

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ knitr::opts_chunk$set(
2424
[![CRAN status](https://www.r-pkg.org/badges/version/prqlr)](https://CRAN.R-project.org/package=prqlr)
2525
<!-- badges: end -->
2626

27-
R bindings for [the `prql-compiler` Rust library](https://github.com/prql/prql),
27+
R bindings for [the `prqlc` Rust library](https://github.com/prql/prql),
2828
powered by [`savvy`](https://github.com/yutannihilation/savvy).
2929

3030
This version supports PRQL `r prqlr::prql_version()`.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ badge](https://eitsupi.r-universe.dev/badges/prqlr)](https://eitsupi.r-universe.
1111
status](https://www.r-pkg.org/badges/version/prqlr)](https://CRAN.R-project.org/package=prqlr)
1212
<!-- badges: end -->
1313

14-
R bindings for [the `prql-compiler` Rust
15-
library](https://github.com/prql/prql), powered by
16-
[`savvy`](https://github.com/yutannihilation/savvy).
14+
R bindings for [the `prqlc` Rust library](https://github.com/prql/prql),
15+
powered by [`savvy`](https://github.com/yutannihilation/savvy).
1716

1817
This version supports PRQL 0.11.2.
1918

man/prql_version.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/prqlr-package.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.

tests/testthat/_snaps/compile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@
375375
LIMIT
376376
2
377377

378-
# prql-compiler's version
378+
# prqlc's version
379379

380380
Code
381381
prql_version()

tests/testthat/test-compile.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ take 2
9696
target = prql_get_targets()
9797
)
9898

99-
test_that("prql-compiler's version", {
99+
test_that("prqlc's version", {
100100
expect_snapshot(prql_version())
101101
expect_s3_class(prql_version(), "numeric_version")
102102
})

0 commit comments

Comments
 (0)