Fix typo in comment

This commit is contained in:
Nagarjuna Kumar
2020-05-17 01:53:05 +01:00
committed by Inanc Gumus
parent 211c8d0077
commit 69935439be

View File

@ -23,7 +23,7 @@ func nested() { // block scope starts
// this one only belongs to this scope // this one only belongs to this scope
// package's variable is still intact // package's variable is still intact
var declareMeAgain = 5 var declareMeAgain = 5
fmt.Println("inside nope:", declareMeAgain) fmt.Println("inside nested:", declareMeAgain)
} // block scope ends } // block scope ends