Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/azd/pkg/azdo/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func getProcessTemplateId(ctx context.Context, client core.Client) (string, erro
return process.Id.String(), nil
}

// creates a new Azure Devops project
// creates a new Azure DevOps project
func createProject(ctx context.Context, connection *azuredevops.Connection, name string, description string, console input.Console) (*core.TeamProjectReference, error) {
coreClient, err := core.NewClient(ctx, connection)
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions cli/azd/pkg/commands/pipeline/azdo_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (p *AzdoScmProvider) createNewGitRepositoryFromInput(ctx context.Context, c
var repo *azdoGit.GitRepository
for {
name, err := console.Prompt(ctx, input.ConsoleOptions{
Message: "Enter the name for your new Azure Devops Repository OR Hit enter to use this name:",
Message: "Enter the name for your new Azure DevOps Repository OR Hit enter to use this name:",
DefaultValue: p.repoDetails.projectName,
})
if err != nil {
Expand Down Expand Up @@ -354,7 +354,7 @@ func (p *AzdoScmProvider) promptForAzdoRepository(ctx context.Context, console i
}

switch idx {
// Select from an existing Azure Devops project
// Select from an existing Azure DevOps project
case 0:
remoteUrl, err = p.ensureGitRepositoryExists(ctx, console)
if err != nil {
Expand Down