vmware-tanzu / tanzu-cli

The Tanzu Core CLI project provides the core functionality of the Tanzu CLI. The CLI is based on a plugin architecture where CLI command functionality can be delivered through independently developed plugin binaries
Apache License 2.0
33 stars 21 forks source link

Fix indentation for example #775

Closed marckhouzam closed 3 months ago

marckhouzam commented 3 months ago

What this PR does / why we need it

Small tweak to remove an extra space in the example of tanzu login. I also removed the : at the end since there was a double :: but then I saw that other examples don't use : at all.

Which issue(s) this PR fixes

Fixes #

Describe testing done for PR

$ tz login -h
Login to Tanzu Application Platform

Usage:
  tanzu login [flags]

Aliases:
  login, lo, logins

Examples:

    # Login to Tanzu
    tanzu login

    # Login to Tanzu using non-default endpoint
    tanzu login --endpoint "https://login.example.com"

    # Login to Tanzu by using the provided CA Bundle for TLS verification
    tanzu login --endpoint https://test.example.com[:port] --endpoint-ca-certificate /path/to/ca/ca-cert

    # Login to Tanzu by explicit request to skip TLS verification (this is insecure)
    tanzu login --endpoint https://test.example.com[:port] --insecure-skip-tls-verify

    Note:
[...]

Release note

Additional information

Special notes for your reviewer