Skip to content

Commit

Permalink
Typo in cobol tutorial : DIVSION -> DIVISION
Browse files Browse the repository at this point in the history
  • Loading branch information
Naereen committed Sep 24, 2020
1 parent 325ebb8 commit 2c65047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cobol.html.markdown
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 2c65047

Please sign in to comment.