This commit is contained in:
Shreyas Goenka 2025-02-18 14:52:25 +01:00
parent 608f0ad94f
commit c59b11f7c1
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ rm ./child.pid
# 1. The parent process does not wait for the child process to end. # 1. The parent process does not wait for the child process to end.
# 2. The child process correctly receives input from the parent process. # 2. The child process correctly receives input from the parent process.
# #
# Property (1) is validated because the child process waits for it's parent process # Property (1) is validated because the child process waits for its parent process
# to end before it writes to stdout. # to end before it writes to stdout.
# #
# Property (2) is directly validated by the output of the child process. # Property (2) is directly validated by the output of the child process.