From db21b6d91065982b3ffdc6d879d02fa70b0f2e9e Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Mon, 19 Dec 2005 12:49:55 +0000 Subject: [PATCH] Slight wording change to description of pipes. --- man7/pipe.7 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man7/pipe.7 b/man7/pipe.7 index d9983f795..4071ebd35 100644 --- a/man7/pipe.7 +++ b/man7/pipe.7 @@ -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).