diff options
| author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-09-24 18:59:06 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-24 18:59:06 +0200 | 
| commit | 7e8b8fa7d7e8f8cc5cef6123e6393052fd8cb618 (patch) | |
| tree | 6116ff9c22f9fd53ee96e2ad19f13292d9e1f157 | |
| parent | 0f2e4025d357fa5b36873148a45dd96f86ead54a (diff) | |
| parent | 2c650474f60b8db2d60997c22bb1e4cc408b57b2 (diff) | |
Merge pull request #4013 from Naereen/patch-1
[COBOL] Typo in cobol tutorial : DIVSION -> DIVISION
| -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. | 
