Fix small typos
This commit is contained in:
committed by
İnanç Gümüş
parent
0da1a29fee
commit
c6eb8c38df
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
## Where is the 2nd variable below stored in memory?
|
## Where is the 2nd variable below stored in memory?
|
||||||
```go
|
```go
|
||||||
// Let's say that first variable below is stored in this memory location: 20th
|
// Let's say that the first variable below is stored in this memory location: 20th
|
||||||
var (
|
var (
|
||||||
first int32 = 100
|
first int32 = 100
|
||||||
second int32 = 150
|
second int32 = 150
|
||||||
@ -139,7 +139,7 @@ func main() {
|
|||||||
if i == len(sum) - 1 {
|
if i == len(sum) - 1 {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
sum[i+1] = 10
|
sum[i+1] = 10
|
||||||
fmt.Print(v, " ")
|
fmt.Print(v, " ")
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user