Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Clarify docstring for includet #851

Merged
merged 1 commit into from
Sep 26, 2024
Merged
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 src/packagedef.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ try fixing it with something like `push!(LOAD_PATH, "/path/to/my/private/repos")

`includet` is deliberately non-recursive, so if `filename` loads any other files,
they will not be automatically tracked.
(See [`Revise.track`](@ref) to set it up manually.)
(Call [`Revise.track`](@ref) manually on each file, if you've already `included`d all the code you need.)
"""
function includet(mod::Module, file)
prev = Base.source_path(nothing)
Expand Down
Loading