diff --git a/content/en/language_clients/python/overview.md b/content/en/language_clients/python/overview.md index 8c43e937..44f3bb0d 100644 --- a/content/en/language_clients/python/overview.md +++ b/content/en/language_clients/python/overview.md @@ -26,7 +26,7 @@ Full project documentation can be found in the [sigstore-python](https://github. python -m pip install sigstore ``` -Optionally, you can install `sigstore` and all its dependencies with [hash-checking mode](https://pip.pypa.io/en/stable/topics/secure-installs/#hash-checking-mode) enabled. Learn more about it in our [project documentation](https://github.com/sigstore/sigstore-python#installation) +Optionally, you can install `sigstore` and all its dependencies with [hash-checking mode](https://pip.pypa.io/en/stable/topics/secure-installs/#hash-checking-mode) enabled. Learn more about it in the [project documentation](https://github.com/sigstore/sigstore-python#installation). ### GitHub Action Installation @@ -48,7 +48,7 @@ jobs: ### Signing example -For this example, we will sign a a file named `foo.txt`. [`sigstore`](https://pypi.org/project/sigstore/) will use OpenID Connect (OIDC) to veryify your email address. +For this example, we will sign a a file named `foo.txt`. [`sigstore`](https://pypi.org/project/sigstore/) will use OpenID Connect (OIDC) to verify your email address. Use the following command to sign `foo.txt`: @@ -56,6 +56,8 @@ Use the following command to sign `foo.txt`: sigstore sign foo.txt ``` +This will produce `foo.txt.sigstore.json` for subsequent verification. + ### Verifying example To verify the signature on `foo.txt` run the following command: