diff --git a/src/Documentation/doc/en/basic/codingcontracts.md b/src/Documentation/doc/en/basic/codingcontracts.md index 667365295..f624c8178 100644 --- a/src/Documentation/doc/en/basic/codingcontracts.md +++ b/src/Documentation/doc/en/basic/codingcontracts.md @@ -72,4 +72,4 @@ The `amount` of the reward varies based on the difficulty of the problem posed b ## Notes -- The `scp` [Terminal](terminal.md) command does not work on Coding Contracts +- The `scp` CLI command and the `ns.scp` API do not work on Coding Contracts. diff --git a/src/Terminal/HelpText.ts b/src/Terminal/HelpText.ts index eb5eded4f..64239cc27 100644 --- a/src/Terminal/HelpText.ts +++ b/src/Terminal/HelpText.ts @@ -34,12 +34,12 @@ export const TerminalHelpText: string[] = [ " nano [files...] Text editor - Open up and edit one or more scripts or text files", " ps Display all scripts that are currently running", " rm [OPTIONS]... [FILE]... Delete a file from the server", - " run [script] [-t n] [--tail] Execute a program or script", + " run [script] [-t n] [--tail] Run a program, a script, or a coding contract", " [--ram-override n]", " [--temporary] [args...]", " scan Prints all immediately-available network connections", " scan-analyze [d] [-a] Prints info for all servers up to d nodes away", - " scp [files...] [server] Copies text or .lit files to a destination server", + " scp [files...] [server] Copies scripts, text files, or .lit files to a destination server", " sudov Shows whether you have root access on this computer", " tail [script/pid] [args...] Displays dynamic logs for the specified script", " top Displays all running scripts and their RAM usage", @@ -433,7 +433,7 @@ export const HelpTexts: Record = { run: [ "Usage: run [file name] [-t num_threads] [--tail] [--ram-override ram_in_GBs] [--temporary] [args...]", " ", - "Execute a program, script or coding contract.", + "Run a program, a script, or a coding contract.", " ", "The '[-t num_threads]', '[--tail]', `[--ram-override ram_in_GBs]`, [--temporary], and '[args...]' arguments are", "only valid when running a script. The '-t' flag is used to indicate that the script should be run with the specified",