[cobol/en] Correct 2 minor typos (#4286)

I corrected 2 minor typos (first instance is extra/misplaced period & the second instance is a misspelling).
This commit is contained in:
taivlam 2022-01-03 15:55:44 +00:00 committed by GitHub
parent 5e1e2a0a15
commit ba6e865d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ organizations.
*COBOL has significant differences between legacy (COBOL-85) *COBOL has significant differences between legacy (COBOL-85)
*and modern (COBOL-2002 and COBOL-2014) versions. *and modern (COBOL-2002 and COBOL-2014) versions.
*Legacy versions require columns 1-6 to be blank (they are used *Legacy versions require columns 1-6 to be blank (they are used
*to store the index number of the punched card..) *to store the index number of the punched card).
*A '*' in column 7 means a comment. *A '*' in column 7 means a comment.
*In legacy COBOL, a comment can only be a full line. *In legacy COBOL, a comment can only be a full line.
*Modern COBOL doesn't require fixed columns and uses *> for *Modern COBOL doesn't require fixed columns and uses *> for
@ -106,7 +106,7 @@ organizations.
PROCEDURE DIVISION. PROCEDURE DIVISION.
FIRST-PARA. FIRST-PARA.
DISPLAY 'THIS IS IN FIRST-PARA'. DISPLAY 'THIS IS IN FIRST-PARA'.
PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip second-para and perfrom 3rd & 4th PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip second-para and perform 3rd & 4th
*> then after performing third and fourth, *> then after performing third and fourth,
*> return here and continue the program until STOP RUN. *> return here and continue the program until STOP RUN.