From 213dab9463b85be26988530de244b05c563c2bb4 Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Mon, 4 Apr 2022 22:46:28 +1000 Subject: [PATCH] Better grammar in pabcnetcclear (#7934) --- pages/windows/pabcnetcclear.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pages/windows/pabcnetcclear.md b/pages/windows/pabcnetcclear.md index ff7d198c19..54287792c6 100644 --- a/pages/windows/pabcnetcclear.md +++ b/pages/windows/pabcnetcclear.md @@ -3,22 +3,22 @@ > Preprocess and compile PascalABC.NET source files. > More information: . -- Compile a given source file into an executable with the same name: +- Compile the specified source file into an executable with the same name: -`pabcnetcclear {{path/to/file.pas}}` +`pabcnetcclear {{path/to/source_file.pas}}` -- Compile a given source file into an executable with the specified name: +- Compile the specified source file into an executable with the specified name: -`pabcnetcclear /Output:{{path/to/file.pas}} {{path/to/file.pas}}` +`pabcnetcclear /Output:{{path/to/file.pas}} {{path/to/source_file.pas}}` -- Compile a given source file into an executable with the same name along with/without debug information: +- Compile the specified source file into an executable with the same name along with/without debug information: -`pabcnetcclear /Debug:{{0|1}} {{path/to/file.pas}}` +`pabcnetcclear /Debug:{{0|1}} {{path/to/source_file.pas}}` -- Allow units to be searched in a path while compiling a given source file into an executable with the same name: +- Allow units to be searched in the specified path while compiling the source file into an executable with the same name: -`pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/file.pas}}` +`pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/source_file.pas}}` -- Compile a given source file into an executable, defining a symbol: +- Compile the specified source file into an executable, defining a symbol: -`pabcnetcclear /Define:{{symbol}} {{path/to/file.pas}}` +`pabcnetcclear /Define:{{symbol}} {{path/to/source_file.pas}}`