From afc7e72ee99d4ec44c00058f78c1b4e70bc9214e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C4=81K=C4=83?= Date: Tue, 10 Aug 2021 01:06:20 +0800 Subject: [PATCH] typo fix in documentation (#41838) --- doc/src/manual/running-external-programs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/running-external-programs.md b/doc/src/manual/running-external-programs.md index 16dc779318d51..e643ffff3ee61 100644 --- a/doc/src/manual/running-external-programs.md +++ b/doc/src/manual/running-external-programs.md @@ -399,7 +399,7 @@ julia> run(Cmd(`sh -c "echo foo \$HOWLONG"`, env=("HOWLONG" => "ever!",))); foo ever! ``` -See `[`Cmd`](@ref)` for additional keyword arguments. The [`setenv`](@ref) and [`addenv`](@ref) commands +See [`Cmd`](@ref) for additional keyword arguments. The [`setenv`](@ref) and [`addenv`](@ref) commands provide another means for replacing or adding to the `Cmd` execution environment variables, respectively: ```jldoctest