From 9d8a88004a75c7c51bf7629025e3cecd3236a73c Mon Sep 17 00:00:00 2001 From: Lionel Henry Date: Wed, 28 Sep 2022 14:41:29 +0200 Subject: [PATCH] Update URLs --- DESCRIPTION | 2 +- README.Rmd | 4 ++-- README.md | 4 ++-- man/purrr-package.Rd | 2 +- vignettes/other-langs.Rmd | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 4a7335cb..00d49701 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -15,7 +15,7 @@ Authors@R: Description: A complete and consistent functional programming toolkit for R. License: GPL-3 | file LICENSE -URL: http://purrr.tidyverse.org, +URL: https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr BugReports: https://github.com/tidyverse/purrr/issues Depends: diff --git a/README.Rmd b/README.Rmd index 11fc9710..08c33a84 100644 --- a/README.Rmd +++ b/README.Rmd @@ -17,12 +17,12 @@ knitr::opts_chunk$set( [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/purrr)](https://cran.r-project.org/package=purrr) [![R build status](https://github.com/tidyverse/purrr/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverse/purrr) -[![Codecov test coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://codecov.io/gh/tidyverse/purrr?branch=master) +[![Codecov test coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/tidyverse/purrr?branch=master) ## Overview -purrr enhances R's functional programming (FP) toolkit by providing a complete and consistent set of tools for working with functions and vectors. If you've never heard of FP before, the best place to start is the family of `map()` functions which allow you to replace many for loops with code that is both more succinct and easier to read. The best place to learn about the `map()` functions is the [iteration chapter](http://r4ds.had.co.nz/iteration.html) in R for data science. +purrr enhances R's functional programming (FP) toolkit by providing a complete and consistent set of tools for working with functions and vectors. If you've never heard of FP before, the best place to start is the family of `map()` functions which allow you to replace many for loops with code that is both more succinct and easier to read. The best place to learn about the `map()` functions is the [iteration chapter](https://r4ds.had.co.nz/iteration.html) in R for data science. ## Installation diff --git a/README.md b/README.md index 991fd68b..757ec609 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [![R build status](https://github.com/tidyverse/purrr/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverse/purrr) [![Codecov test -coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://codecov.io/gh/tidyverse/purrr?branch=master) +coverage](https://codecov.io/gh/tidyverse/purrr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/tidyverse/purrr?branch=master) ## Overview @@ -20,7 +20,7 @@ vectors. If you’ve never heard of FP before, the best place to start is the family of `map()` functions which allow you to replace many for loops with code that is both more succinct and easier to read. The best place to learn about the `map()` functions is the [iteration -chapter](http://r4ds.had.co.nz/iteration.html) in R for data science. +chapter](https://r4ds.had.co.nz/iteration.html) in R for data science. ## Installation diff --git a/man/purrr-package.Rd b/man/purrr-package.Rd index 39d9c7c5..10a3270a 100644 --- a/man/purrr-package.Rd +++ b/man/purrr-package.Rd @@ -13,7 +13,7 @@ A complete and consistent functional programming toolkit for R. \seealso{ Useful links: \itemize{ - \item \url{http://purrr.tidyverse.org} + \item \url{https://purrr.tidyverse.org/} \item \url{https://github.com/tidyverse/purrr} \item Report bugs at \url{https://github.com/tidyverse/purrr/issues} } diff --git a/vignettes/other-langs.Rmd b/vignettes/other-langs.Rmd index 7f244e6b..1440e4e9 100644 --- a/vignettes/other-langs.Rmd +++ b/vignettes/other-langs.Rmd @@ -18,7 +18,7 @@ purrr draws inspiration from many related tools: [lodash](https://lodash.com) and [lazy.js](http://danieltao.com/lazy.js/). -* [rlist](http://renkun.me/rlist/), another R package to support working +* [rlist](https://renkun-ken.github.io/rlist/), another R package to support working with lists. Similar goals but somewhat different philosophy. However, the goal of purrr is not to try and simulate a purer functional programming language in R; we don't want to implement a second-class version of Haskell in R. The goal is to give you similar expressiveness to an FP language, while allowing you to write code that looks and works like R: @@ -42,5 +42,5 @@ However, the goal of purrr is not to try and simulate a purer functional program argument, `.right`. Type-stable functions are easy to reason about so additional arguments will never change the type of the output. -[scala]:http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.List +[scala]:https://www.scala-lang.org/api/current/index.html [haskell]:http://hackage.haskell.org/package/base-4.7.0.1/docs/Prelude.html#g:11