1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 04:20:39 +02:00

Merge pull request #4013 from Naereen/patch-1

[COBOL] Typo in cobol tutorial : DIVSION -> DIVISION
This commit is contained in:
Max Schumacher
2020-09-24 18:59:06 +02:00
committed by GitHub

View File

@@ -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.