Capitalize i

This commit is contained in:
Firas Khalil Khana
2021-05-01 13:21:56 +03:00
committed by İnanç Gümüş
parent b6ca30c4bb
commit 27c12b9b58
29 changed files with 71 additions and 71 deletions

View File

@ -15,10 +15,10 @@ func main() {
// and I can call `hello` function here.
//
// this is because, package-scoped names
// are shared in the same package
// are shared in the same package
hello()
// but here, i can't access the fmt package without
// but here, I can't access the fmt package without
// importing it.
//
// this is because, it's in the printer.go's file scope.