From 48a76fd1e27a7e329b8987407c409ee3eb28347c Mon Sep 17 00:00:00 2001 From: alexkiro <1538458+alexkiro@users.noreply.github.com> Date: Fri, 16 Feb 2024 18:06:19 +0200 Subject: [PATCH] Fix documentation command for adding a supplemental source (#8953) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Randy Döring <30527984+radoering@users.noreply.github.com> --- docs/repositories.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/repositories.md b/docs/repositories.md index 710cf7e7525..9ff8598e7a4 100644 --- a/docs/repositories.md +++ b/docs/repositories.md @@ -226,7 +226,7 @@ You can configure a package source as a secondary source with `priority = "secon source configuration. ```bash -poetry source add --priority=secondary https://foo.bar/simple/ +poetry source add --priority=secondary foo https://foo.bar/simple/ ``` There can be more than one secondary package source. @@ -247,7 +247,7 @@ You can configure a package source as a supplemental source with `priority = "su source configuration. ```bash -poetry source add --priority=supplemental https://foo.bar/simple/ +poetry source add --priority=supplemental foo https://foo.bar/simple/ ``` There can be more than one supplemental package source.