Description
The prompt shown when az aks update is called with no arguments has two formatting issues:
Current:
no argument specified to update would you like to reconcile to current settings? (y/N):
Expected:
No argument specified to update. Would you like to reconcile to current settings? (y/N):
Issues:
- Sentence does not start with a capital letter (
no → No)
- Missing period after
update to separate the two sentences
would should be capitalized to Would (starts a new sentence)
Location
src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py, line 8384
reconcilePrompt = 'no argument specified to update would you like to reconcile to current settings?'
Description
The prompt shown when
az aks updateis called with no arguments has two formatting issues:Current:
Expected:
Issues:
no→No)updateto separate the two sentenceswouldshould be capitalized toWould(starts a new sentence)Location
src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py, line 8384