Slight wording change to description of pipes.

This commit is contained in:
Michael Kerrisk 2005-12-19 12:49:55 +00:00
parent 5059acc358
commit db21b6d910
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ A pipe is created using
which creates a new pipe and returns two file descriptors,
one referring to the read end of the pipe,
the other referring to the write end.
Pipes only allow communication between related processes:
Pipes allow communication between related processes:
one process creates the pipe, and then allows another process to inherit
duplicate file descriptors referring to the pipe as a result of calling
.BR fork (2).