From f2646230631ef46907db70fe76ee071c26c733c4 Mon Sep 17 00:00:00 2001 From: Frames White Date: Wed, 8 May 2024 22:00:46 +0800 Subject: [PATCH] Fix typo in comment --- base/initdefs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/initdefs.jl b/base/initdefs.jl index d9e475cfb1d062..96bdc7957bcca4 100644 --- a/base/initdefs.jl +++ b/base/initdefs.jl @@ -286,7 +286,7 @@ function load_path_expand(env::AbstractString)::Union{String, Nothing} if env == "@script" # complete match, not startswith, so search upwards return current_project(dir) else - # starts with, so assume rleative path is after + # starts with, so assume relative path is after return abspath(replace(env, "@script" => dir)) end end