Skip to content

Commit 439aa6d

Browse files
committed
fixed links in DESCRIPTION, _pkgdown.yml and vignettes
1 parent b0f22fc commit 439aa6d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

‎DESCRIPTION‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ Suggests:
3737
rmarkdown,
3838
vdiffr
3939
VignetteBuilder: knitr
40-
URL: https://mpru.github.io/karel/
41-
BugReports: https://github.com/mpru/karel/issues/
40+
URL: https://ropensci.github.io/karel/
41+
BugReports: https://github.com/ropensci/karel/issues/
4242
Config/testthat/edition: 3

‎_pkgdown.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
url: https://mpru.github.io/karel/
1+
url: https://ropensci.github.io/karel/
22
template:
33
bootstrap: 5
44
bootswatch: flatly
@@ -24,7 +24,7 @@ navbar:
2424
aria-label: Twitter
2525
github:
2626
icon: fa-github
27-
href: https://github.com/mpru/karel
27+
href: https://github.com/ropensci/karel
2828
getstarted:
2929
text: Getting started
3030
menu:

‎vignettes/a_intro_progrbasics_en.Rmd‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ It is also possible to install packages published in other repositories. For exa
155155
# Instalar desde CRAN el paquete devtools
156156
install.packages("devtools")
157157
# Instalar desde GitHub el paquete karel
158-
devtools::install_github("mpru/karel")
158+
devtools::install_github("ropensci/karel")
159159
```
160160

161161
A package is installed only once, but every time we want to use it, we need to *load* it so that its tools become available to us. This is done with the **`library("packagename")`** command, for example, `library("karel")`.

‎vignettes/a_intro_progrbasics_es.Rmd‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ También es posible instalar paquetes publicados en otros repositorios. Por ejem
151151
# Instalar desde CRAN el paquete devtools
152152
install.packages("devtools")
153153
# Instalar desde GitHub el paquete karel
154-
devtools::install_github("mpru/karel")
154+
devtools::install_github("ropensci/karel")
155155
```
156156

157157
Un paquete se instala una sola vez, pero cada vez que lo queramos usar debemos *cargarlo* para que las herramientas que trae queden a nuestra disposición. Eso se hace con la instrucción `library("nombredelpaquete")`, por ejemplo, `library("karel")`.

0 commit comments

Comments
 (0)