From f4138709d8fd09691b8d6161f6521502df64a99d Mon Sep 17 00:00:00 2001 From: andreytemn Date: Fri, 15 Jan 2021 11:31:38 +0100 Subject: Fix typo in data item definition (#4076) Change "with start with a level number" to "starts with a level number" --- cobol.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cobol.html.markdown') diff --git a/cobol.html.markdown b/cobol.html.markdown index 22fcb6e0..1b33f9cc 100644 --- a/cobol.html.markdown +++ b/cobol.html.markdown @@ -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. -- cgit v1.2.3 From ba6e865d5bf2243aa9865810bc60b11281b5a6b6 Mon Sep 17 00:00:00 2001 From: taivlam <47955724+taivlam@users.noreply.github.com> Date: Mon, 3 Jan 2022 15:55:44 +0000 Subject: [cobol/en] Correct 2 minor typos (#4286) I corrected 2 minor typos (first instance is extra/misplaced period & the second instance is a misspelling). --- cobol.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cobol.html.markdown') diff --git a/cobol.html.markdown b/cobol.html.markdown index 1b33f9cc..1c858396 100644 --- a/cobol.html.markdown +++ b/cobol.html.markdown @@ -14,7 +14,7 @@ organizations. *COBOL has significant differences between legacy (COBOL-85) *and modern (COBOL-2002 and COBOL-2014) versions. *Legacy versions require columns 1-6 to be blank (they are used - *to store the index number of the punched card..) + *to store the index number of the punched card). *A '*' in column 7 means a comment. *In legacy COBOL, a comment can only be a full line. *Modern COBOL doesn't require fixed columns and uses *> for @@ -106,7 +106,7 @@ organizations. PROCEDURE DIVISION. FIRST-PARA. DISPLAY 'THIS IS IN FIRST-PARA'. - PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip second-para and perfrom 3rd & 4th + PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip second-para and perform 3rd & 4th *> then after performing third and fourth, *> return here and continue the program until STOP RUN. -- cgit v1.2.3