diff options
| author | Lilian Besson <Naereen@users.noreply.github.com> | 2020-09-24 16:39:21 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-24 16:39:21 +0200 | 
| commit | 2c650474f60b8db2d60997c22bb1e4cc408b57b2 (patch) | |
| tree | 6bb93aa289c750e98050f1f4b528572ac4c3fe82 | |
| parent | 325ebb85435f1ac23490bc14fbdb0b3da323eb7c (diff) | |
Typo in cobol tutorial : DIVSION -> DIVISION
See https://duckduckgo.com/?t=canonical&q=IDENTIFICATION+DIVSION+COBOL&ia=web
| -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 7d94d8c9..22fcb6e0 100644 --- a/cobol.html.markdown +++ b/cobol.html.markdown @@ -29,7 +29,7 @@ organizations.        *COBOL code is broken up into 4 divisions.        *Those divisions, in order, are: -      *IDENTIFICATION DIVSION. +      *IDENTIFICATION DIVISION.        *ENVIRONMENT DIVISION.        *DATA DIVISION.        *PROCEDURE DIVISION. @@ -75,7 +75,7 @@ organizations.        DATA DIVISION.        WORKING-STORAGE SECTION.        01 THE-MESSAGE      PIC X(20). -      PROCEDURE DIVSION. +      PROCEDURE DIVISION.            DISPLAY "STARTING PROGRAM".            MOVE "HELLO WORLD" TO THE-MESSAGE.            DISPLAY THE-MESSAGE. | 
