From b14ef936b0c320cbfc96d9947375c7c94c83a35e Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 14 Feb 2020 23:15:59 -0800 Subject: [PATCH] Rename execute-process to background-process --- README.md | 2 +- doc/Admin.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27dc709c..875b8619 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ Any command can be flagged to be executed as a background process. For example, make a Plugin that has a command that may potentially take a long time to complete, which could cause PBot to be non-responsive... -Not a problem! You can use the [`cmdset`](doc/Admin.md#cmdset) command to set the `execute-process` [command metadata](doc/Admin.md#command-metadata-list) +Not a problem! You can use the [`cmdset`](doc/Admin.md#cmdset) command to set the `background-process` [command metadata](doc/Admin.md#command-metadata-list) and the command will now run as a background process, allowing PBot to carry on with its duties. The familiar [`ps`](doc/Admin.md#ps) and [`kill`](doc/Admin.md#kill) commands can be used to list and kill the background processes. diff --git a/doc/Admin.md b/doc/Admin.md index 7e0f2103..b213041f 100644 --- a/doc/Admin.md +++ b/doc/Admin.md @@ -550,7 +550,7 @@ Name | Description `help` | The text to display for the [`help`](Commands.md#help) command. `cap-required` | When set to a true value then the command requires that users have the `can-` [capability](#user-capabilities) before they can invoke it. `dont-replace-pronouns` | When set to a true value then pronouns such as "my", "me", "your", etc, will not be intuitively replaced with nicks and such. -`execute-process` | When set to a true value then this command will be executed as a background process. Use this for commands that can potentially take a long time to complete. +`background-process` | When set to a true value then this command will be executed as a background process. Use this for commands that can potentially take a long time to complete. ## Process management commands ### ps