Skip to content

Commit bf1da2b

Browse files
author
Rajeev Kumar Singh
committed
cleanup
1 parent e552b47 commit bf1da2b

File tree

2 files changed

+2
-17
lines changed

2 files changed

+2
-17
lines changed

07-packages/myapp/app.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import (
44
"fmt"
55
"github.com/callicoder/golang-tutorials/07-packages/numbers"
66
"github.com/callicoder/golang-tutorials/07-packages/strings"
7-
"github.com/callicoder/golang-tutorials/07-packages/strings/greetings" // Importing a nested package
7+
"github.com/callicoder/golang-tutorials/07-packages/strings/greeting" // Importing a nested package
88
str "strings" // Package Alias
99
)
1010

1111
func main() {
1212
fmt.Println(numbers.IsPrime(19))
1313

14-
fmt.Println(greetings.WelcomeText)
14+
fmt.Println(greeting.WelcomeText)
1515

1616
fmt.Println(strings.Reverse("callicoder"))
1717

07-packages/strings/greetings/texts.go

-15
This file was deleted.

0 commit comments

Comments
 (0)