mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Fix comments not getting recognized
Looks like the vertical alignment in one section was causing the comments to not be recognized
This commit is contained in:
parent
36d86cd4d4
commit
f19bab44fb
@ -53,7 +53,8 @@ organizations.
|
||||
*example:
|
||||
01 MYNAME PIC xxxxxxxxxx. *> A 10 character string.
|
||||
|
||||
*But counting all those x's can lead to errors, so the above code can, and should,
|
||||
*But counting all those x's can lead to errors,
|
||||
*so the above code can, and should
|
||||
*be re-written as:
|
||||
01 MYNAME PIC X(10).
|
||||
|
||||
@ -105,7 +106,7 @@ organizations.
|
||||
PROCEDURE DIVISION.
|
||||
FIRST-PARA.
|
||||
DISPLAY 'THIS IS IN FIRST-PARA'.
|
||||
PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip over second-para and perfrom 3rd & 4th
|
||||
PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip second-para and perfrom 3rd & 4th
|
||||
*> then after performing third and fourth,
|
||||
*> return here and continue the program until STOP RUN.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user