Skip to content

Commit 02d7ac0

Browse files
Minor doc updates (#8)
1 parent 3666c0c commit 02d7ac0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/planet_auth_utils/commands/cli/jwt_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def cmd_jwt_validate_oauth(ctx, token, token_file, audience, issuer, human_reada
183183
development and debugging utility. The default behavior to inspect the token
184184
for issuer and audience information used to validate the token is wholly
185185
incorrect for a production use case. The decision of which issuers to
186-
trust with which audiences MUST be controlled by the service operator.
186+
trust with what audiences MUST be controlled by the service operator.
187187
"""
188188
token_to_validate = _get_token_or_fail(token_opt=token, token_file_opt=token_file)
189189
(hazmat_header, hazmat_body, hazmat_signature) = TokenValidator.hazmat_unverified_decode(token_to_validate)

src/planet_auth_utils/commands/cli/oauth_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _check_client_type(ctx):
5656
@click.pass_context
5757
def cmd_oauth(ctx):
5858
"""
59-
Auth commands specific to OAuth authentication mechanisms.
59+
OAuth2 authentication commands.
6060
"""
6161
if ctx.invoked_subcommand is None:
6262
click.echo(ctx.get_help())

src/planet_auth_utils/commands/cli/planet_legacy_auth_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _check_client_type(ctx):
3838
@click.pass_context
3939
def cmd_pllegacy(ctx):
4040
"""
41-
Auth commands specific to Planet legacy authentication mechanisms.
41+
Planet legacy authentication commands.
4242
"""
4343
if ctx.invoked_subcommand is None:
4444
click.echo(ctx.get_help())

0 commit comments

Comments
 (0)