From 57b2a9270beae3fc2ec2d9c1338887d0e3a5e58d Mon Sep 17 00:00:00 2001 From: eiffel-org Date: Tue, 3 Oct 2017 15:41:22 +0000 Subject: [PATCH] Update wikipage Process and BaseProcess. (Signed-off-by:alexk). git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1915 abb3cda0-5349-4a8f-a601-0c33ac3a8c38 --- .../basic-computing/EiffelProcess-and-EiffelBaseProcess.wiki | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/trunk/solutions/basic-computing/EiffelProcess-and-EiffelBaseProcess.wiki b/documentation/trunk/solutions/basic-computing/EiffelProcess-and-EiffelBaseProcess.wiki index aa3663c3..67b520db 100644 --- a/documentation/trunk/solutions/basic-computing/EiffelProcess-and-EiffelBaseProcess.wiki +++ b/documentation/trunk/solutions/basic-computing/EiffelProcess-and-EiffelBaseProcess.wiki @@ -20,9 +20,9 @@ The advantage of `process_launcher` is that you do not have to care about quotin == Output redirection == On the `BASE_PROCESS` object, it is possible to configure the execution. * It is possible to redirect the standard and error output, and also the input, for instance: -** `redirect_output_to_file (..)` is used to record the execution output in a file +** `redirect_output_to_file` is used to record the execution output in a file ** `redirect_error_to_same_as_output` is used to redirect the error output with the standard output -** `redirect_input_to_file (..)` is used to take the input from a file. +** `redirect_input_to_file` is used to take the input from a file. ** check other `redirect_*` routines. == Platform-specific settings ==