From db772bbfb8d2abc952b30de6c28e48ac21b21b1e Mon Sep 17 00:00:00 2001 From: Florian Atteneder Date: Sat, 21 Oct 2023 01:11:08 +0200 Subject: [PATCH] fixup docs --- base/loading.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/loading.jl b/base/loading.jl index 9c1b13c29d8769..d7bb5ea710b60f 100644 --- a/base/loading.jl +++ b/base/loading.jl @@ -1690,7 +1690,7 @@ In a module, declare that the file, directory, or symbolic link specified by `pa (relative or absolute) is a dependency for precompilation; that is, the module will need to be recompiled if the modification time `mtime` of `path` changes. If `track_content=true` recompilation is triggered when the content of `path` changes -(if `path` is a directory the content equals `readdir(path)`). +(if `path` is a directory the content equals `join(readdir(path))`). This is only needed if your module depends on a path that is not used via [`include`](@ref). It has no effect outside of compilation.