Skip to content

Commit

Permalink
removed erroneous semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyen-anthony authored and bashbunni committed Jun 17, 2022
1 parent ffc2c0d commit c52bd7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,6 @@ func NewProjectPrompt() string {
fmt.Println("what would you like to name your project?")
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
name = scanner.Text();
name = scanner.Text()
return name
}

0 comments on commit c52bd7d

Please sign in to comment.