diff options
author | taivlam <47955724+taivlam@users.noreply.github.com> | 2022-01-03 15:55:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 23:55:44 +0800 |
commit | ba6e865d5bf2243aa9865810bc60b11281b5a6b6 (patch) | |
tree | 2de0dae9709d176e04b429f2a886e6a7e599328b | |
parent | 5e1e2a0a15e0e3005d29baebf43db84175991deb (diff) |
[cobol/en] Correct 2 minor typos (#4286)
I corrected 2 minor typos (first instance is extra/misplaced period & the second instance is a misspelling).
-rw-r--r-- | cobol.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cobol.html.markdown b/cobol.html.markdown index 1b33f9cc..1c858396 100644 --- a/cobol.html.markdown +++ b/cobol.html.markdown @@ -14,7 +14,7 @@ organizations. *COBOL has significant differences between legacy (COBOL-85) *and modern (COBOL-2002 and COBOL-2014) versions. *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. *In legacy COBOL, a comment can only be a full line. *Modern COBOL doesn't require fixed columns and uses *> for @@ -106,7 +106,7 @@ organizations. PROCEDURE DIVISION. 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, *> return here and continue the program until STOP RUN. |