mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Merge pull request #4013 from Naereen/patch-1
[COBOL] Typo in cobol tutorial : DIVSION -> DIVISION
This commit is contained in:
commit
7e8b8fa7d7
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user