Skip to content

Commit 144c66e

Browse files
committed
Many URLs: http --> https
1 parent 9854d5d commit 144c66e

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

β€Ž.github/CODE_OF_CONDUCT.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be repor
2121
opening an issue or contacting one or more of the project maintainers.
2222

2323
This Code of Conduct is adapted from the Contributor Covenant
24-
(http://contributor-covenant.org), version 1.0.0, available at
25-
http://contributor-covenant.org/version/1/0/0/
24+
(https://contributor-covenant.org), version 1.0.0, available at
25+
https://contributor-covenant.org/version/1/0/0/

β€ŽNEWS.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ No longer in Imports: backports, httr, rematch2, rmarkdown (moved to Suggests),
393393
394394
# usethis 1.3.0
395395
396-
* usethis has a website: <http://usethis.r-lib.org> (#217). It includes an article with advice on system setup, for usethis and for R development more generally.
396+
* usethis has a website: <https://usethis.r-lib.org> (#217). It includes an article with advice on system setup, for usethis and for R development more generally.
397397
398398
* `edit_*()` functions now return the target path, invisibly (#255).
399399
@@ -431,7 +431,7 @@ No longer in Imports: backports, httr, rematch2, rmarkdown (moved to Suggests),
431431
432432
* `use_blank_slate()` provides a way to opt in to an RStudio workflow where the user's workspace is neither saved nor reloaded between R sessions. Automated for `scope = "project"`. Provides UI instructions for `scope = "user"`, for now (#139).
433433
434-
* `use_tidy_style()` styles an entire project according to <http://style.tidyverse.org> (#72, #197 @lorenzwalthert).
434+
* `use_tidy_style()` styles an entire project according to <https://style.tidyverse.org> (#72, #197 @lorenzwalthert).
435435
436436
* GitHub conventions common to tidyverse packages are enacted by `use_tidy_contributing()`, `use_tidy_issue_template()`, and `use_tidy_support()` (@batpigandme, #143, #166).
437437

β€ŽR/badge.Rβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#'
1212
#' * `use_badge()`: a general helper used in all badge functions
1313
#' * `use_bioc_badge()`: badge indicates [BioConductor build
14-
#' status](http://bioconductor.org/developers/)
14+
#' status](https://bioconductor.org/developers/)
1515
#' * `use_cran_badge()`: badge indicates what version of your package is
1616
#' available on CRAN, powered by <https://www.r-pkg.org>
1717
#' * `use_lifecycle_badge()`: badge declares the developmental stage of a

β€ŽR/code-of-conduct.Rβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#' `.Rbuildignore`, in the case of a package. The goal of a code of conduct is
55
#' to foster an environment of inclusiveness, and to explicitly discourage
66
#' inappropriate behaviour. The template comes from
7-
#' <http://contributor-covenant.org>, version 1:
8-
#' <http://contributor-covenant.org/version/1/0/0/>.
7+
#' <https://contributor-covenant.org>, version 1:
8+
#' <https://contributor-covenant.org/version/1/0/0>.
99
#'
1010
#' @param path Path of the directory to put `CODE_OF_CONDUCT.md` in, relative to
1111
#' the active project. Passed along to [use_directory()]. Default is to locate

β€ŽR/proj.Rβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ proj_path <- function(..., ext = "") {
9999
}
100100

101101
#' @describeIn proj_utils Runs code with a temporary active project. It is an
102-
#' example of the `with_*()` functions in [withr](http://withr.r-lib.org).
102+
#' example of the `with_*()` functions in [withr](https://withr.r-lib.org).
103103
#' @param code Code to run with temporary active project.
104104
#' @param quiet Whether to suppress user-facing messages, while operating in the
105105
#' temporary active project.
@@ -122,7 +122,7 @@ with_project <- function(path = ".",
122122
#' @describeIn proj_utils Sets an active project until the current execution
123123
#' environment goes out of scope, e.g. the end of the current function or
124124
#' test. It is an example of the `local_*()` functions in
125-
#' [withr](http://withr.r-lib.org).
125+
#' [withr](https://withr.r-lib.org).
126126
#' @param .local_envir The environment to use for scoping. Defaults to current
127127
#' execution environment.
128128
#' @export

β€ŽR/tidyverse.Rβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#' programming with the tidy eval toolkit.
2424
#'
2525
#' * `use_tidy_style()`: styles source code according to the [tidyverse style
26-
#' guide](http://style.tidyverse.org). This function will overwrite files! See
26+
#' guide](https://style.tidyverse.org). This function will overwrite files! See
2727
#' below for usage advice.
2828
#'
2929
#' * `use_tidy_versions()`: pins all dependencies to require at least
@@ -47,9 +47,9 @@
4747
#' `use_tidy_coc()`.
4848
#'
4949
#' @section `use_tidy_style()`:
50-
#' Uses the [styler package](http://styler.r-lib.org) package to style all code
50+
#' Uses the [styler package](https://styler.r-lib.org) package to style all code
5151
#' in a package, project, or directory, according to the [tidyverse style
52-
#' guide](http://style.tidyverse.org).
52+
#' guide](https://style.tidyverse.org).
5353
#'
5454
#' **Warning:** This function will overwrite files! It is strongly suggested to
5555
#' only style files that are under version control or to first create a backup

β€Žinst/templates/tidy-contributing.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bug, create an associated issue and illustrate the bug with a minimal
2525
* Look at the Travis and AppVeyor build status before and after making changes.
2626
The `README` should contain badges for any continuous integration services used
2727
by the package.
28-
* New code should follow the tidyverse [style guide](http://style.tidyverse.org).
28+
* New code should follow the tidyverse [style guide](https://style.tidyverse.org).
2929
You can use the [styler](https://CRAN.R-project.org/package=styler) package to
3030
apply these styles, but please don't restyle code that has nothing to do with
3131
your PR.

β€Žman/badges.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.

β€Žman/proj_utils.Rdβ€Ž

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

β€Žman/tidyverse.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.

0 commit comments

Comments
Β (0)