Skip to content

Commit

Permalink
Fix typo in README (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivroy authored Oct 21, 2024
1 parent 9900058 commit ae78d69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can install xml2 from CRAN,
install.packages("xml2")
```

or you can install the development version from github, using `devtools`:
or you can install the development version from github, using `pak`:

```r
# install.packages("pak")
Expand All @@ -42,7 +42,7 @@ pak::pak("r-lib/xml2")
## Usage

```r
library("xml2")
library(xml2)
x <- read_xml("<foo> <bar> text <baz/> </bar> </foo>")
x

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install.packages("xml2")
```

or you can install the development version from github, using
`devtools`:
`pak`:

``` r
# install.packages("pak")
Expand All @@ -36,7 +36,7 @@ pak::pak("r-lib/xml2")
## Usage

``` r
library("xml2")
library(xml2)
x <- read_xml("<foo> <bar> text <baz/> </bar> </foo>")
x

Expand Down

0 comments on commit ae78d69

Please sign in to comment.