Fix typo in comment

This commit is contained in:
Nagarjuna Kumar
2020-06-16 10:08:20 +03:00
committed by Inanc Gumus
parent 211c8d0077
commit 69935439be
@@ -23,7 +23,7 @@ func nested() { // block scope starts
// this one only belongs to this scope
// package's variable is still intact
var declareMeAgain = 5
fmt.Println("inside nope:", declareMeAgain)
fmt.Println("inside nested:", declareMeAgain)
} // block scope ends