From 412180b909dab6271cd9f7a23a962ceff149fd8d Mon Sep 17 00:00:00 2001 From: Nathan Musoke Date: Sat, 6 Apr 2024 13:00:24 -0400 Subject: [PATCH] fix minor typo in mktempdir docs --- base/file.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/file.jl b/base/file.jl index b7adb8e1a3fbd..727b97abd36f1 100644 --- a/base/file.jl +++ b/base/file.jl @@ -821,7 +821,7 @@ end mktempdir(f::Function, parent=tempdir(); prefix=$(repr(temp_prefix))) Apply the function `f` to the result of [`mktempdir(parent; prefix)`](@ref) and remove the -temporary directory all of its contents upon completion. +temporary directory and all of its contents upon completion. See also: [`mktemp`](@ref), [`mkdir`](@ref).