Skip to content

Commit 6e68450

Browse files
Merge pull request #95 from jpicht/patch-1
FIX java pseudo code for PERFORM VARYING example
2 parents a06ba76 + c341d13 commit 6e68450

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

COBOL Programming with VSCode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2349,7 +2349,7 @@ This may seem complex, but compare it to this Java pseudo-code:
23492349

23502350
```
23512351
for(int counter = 0; counter < 11; counter++){
2352-
for(int counter-2 = 0; counter < 5; counter++{
2352+
for(int counter2 = 0; counter2 < 5; counter2++{
23532353
//move counter to msg-to-write
23542354
//write print-rec
23552355
}

0 commit comments

Comments
 (0)