Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix some typos #293

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# pkgload 1.4.0

* The `reset` argment of `load_all()` is no longer supported because preserving
* The `reset` argument of `load_all()` is no longer supported because preserving
the namespace requires unlocking its environment, which is no longer possible
in recent versions of R. It should no longer be necessary as the performance
issues caused by resetting the namespace were resolved a while ago.
Expand Down
2 changes: 1 addition & 1 deletion R/load.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#'
#' `is_loading()` returns `TRUE` when it is called while `load_all()`
#' is running. This may be useful e.g. in `.onLoad` hooks.
#' A package loaded with `load_all()` can be identified with with
#' A package loaded with `load_all()` can be identified with
#' [is_dev_package()].
#'
#' # Differences to regular loading
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
run_on_load()
ns <- ns_env(pkgname)

# Capture TEMPDIR for use in subproceses
# Capture TEMPDIR for use in subprocesses
if (identical(Sys.getenv("PKGLOAD_PARENT_TEMPDIR"), "")) {
Sys.setenv("PKGLOAD_PARENT_TEMPDIR" = tempdir())
}
Expand Down
2 changes: 1 addition & 1 deletion man/load_all.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading