Skip to content
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.

Commit

Permalink
go-tour: add semicolons removed accidnetally by gofmt
Browse files Browse the repository at this point in the history
LGTM=adg
R=adg
CC=golang-codereviews
https://codereview.appspot.com/148990046
  • Loading branch information
campoy committed Sep 29, 2014
1 parent 2447492 commit 3113d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/flowcontrol/for-continued.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "fmt"

func main() {
sum := 1
for sum < 1000 {
for ; sum < 1000; {
sum += sum
}
fmt.Println(sum)
Expand Down

0 comments on commit 3113d0b

Please sign in to comment.