From f1fce68847f9890d9a84730a86bb9dc8b82377c9 Mon Sep 17 00:00:00 2001 From: Diego Alejandro Tejada Arango <12887482+datejada@users.noreply.github.com> Date: Fri, 2 May 2025 20:58:08 +0200 Subject: [PATCH] [docs] Fix on the installation instructions Minor fix on the docs to avoid the following error: ```julia ERROR: `https://github.com/jump-dev/ModelAnalyzer.jl` is not a valid package name. Perhaps you meant `https://github.com/jump-dev/ModelAnalyzer` The argument appears to be a URL or path, perhaps you meant `Pkg.add(url="...")` or `Pkg.add(path="...")`. ``` --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index e60ae8b..e9631a1 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -39,7 +39,7 @@ run: ```julia using Pkg -Pkg.add("https://github.com/jump-dev/ModelAnalyzer.jl") +Pkg.add(url = "https://github.com/jump-dev/ModelAnalyzer.jl") ``` ## Usage