pipx examples and tests: fix terminology (#10649)

Fix terminology.
This commit is contained in:
Felix Fontein 2025-08-11 20:34:44 +02:00 committed by GitHub
commit bc90635e66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -175,7 +175,7 @@ EXAMPLES = r"""
name: tox name: tox
state: upgrade state: upgrade
- name: Install or upgrade tox with dependency group 'docs' - name: Install or upgrade tox with extra 'docs'
community.general.pipx: community.general.pipx:
name: tox name: tox
source: tox[docs] source: tox[docs]

View file

@ -217,14 +217,14 @@
name: tox name: tox
register: uninstall_tox_2 register: uninstall_tox_2
- name: install tox with dependency group 'docs' - name: install tox with extra 'docs'
community.general.pipx: community.general.pipx:
name: tox name: tox
source: tox[docs] source: tox[docs]
state: latest state: latest
register: install_tox_latest_docs register: install_tox_latest_docs
- name: install tox with dependency group 'docs' again - name: install tox with extra 'docs' again
community.general.pipx: community.general.pipx:
name: tox name: tox
source: tox[docs] source: tox[docs]