Skip to content

Commit 827756c

Browse files
committed
Fix typo
1 parent a90420c commit 827756c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/do_statements_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func TestDoStatements(t *testing.T) {
1717
{"testdata/do/do_until.vbs", 1},
1818
{"testdata/do/do_nest.vbs", 3},
1919
{"testdata/do/do_multi.vbs", 2},
20-
{"testdata/do/do_whiltespace.vbs", 2},
20+
{"testdata/do/do_whitespace.vbs", 2},
2121
{"testdata/do/do_triple_nest.vbs", 6},
2222
}
2323
for _, test := range tests {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Do Until index > 10 ' +1
22
index += 1
3-
Loop ' whiltespace check
3+
Loop ' whitespace check
44

55
Do ' +1
66
index += 1

0 commit comments

Comments
 (0)