summaryrefslogtreecommitdiffhomepage
path: root/cobol.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'cobol.html.markdown')
-rw-r--r--cobol.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/cobol.html.markdown b/cobol.html.markdown
index 7d94d8c9..1b33f9cc 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.
@@ -44,7 +44,7 @@ organizations.
*Let's declare some variables.
*We do this in the WORKING-STORAGE section within the DATA DIVISION.
- *Each data item (aka variable) with start with a level number,
+ *Each data item (aka variable) starts with a level number,
*then the name of the item, followed by a picture clause
*describing the type of data that the variable will contain.
*Almost every COBOL programmer will abbreviate PICTURE as PIC.
@@ -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.