Skip to content

Commit 06f1047

Browse files
committed
Fix grammartical error
Signed-off-by: Hartanto Ario Widjaya <[email protected]>
1 parent aa5c573 commit 06f1047

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

COBOL Programming Course #2 - Advanced Topics/COBOL Programming Course #2 - Advanced Topics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,11 +610,11 @@ However, automatic serialization is not applied to statements specified with the
610610

611611
### File-definition storage
612612

613-
On all programs invocation, the storage associated with file definition (such as FD records) is allocated and available in its last-used state. Therefore, all threads of execution will share this storage. You can depend on automatic serialization for this storage during the execution of the statements mentioned previously, but not between uses of the statements.
613+
Upon program invocation, the storage associated with file definition (such as FD records) is allocated and available in its last-used state. Therefore, all threads of execution will share this storage. You can depend on automatic serialization for this storage during the execution of the statements mentioned previously, but not between uses of the statements.
614614

615615
### Serializing file access with multithreading
616616

617-
To take advantage of automatic serialization, we can use one of the recommended following file organizations and usage patterns when we access files in threaded programs.
617+
To take advantage of automatic serialization, we can use one of the recommended following file organization and usage patterns when we access files in threaded programs.
618618

619619
Recommended file organizations:
620620
- Sequential organization

0 commit comments

Comments
 (0)