docs_preprocessor: Update deprecated actions message (#39062)

Minor correction to label (string) used when generating big table of
actions.

Closes #ISSUE

Release Notes:

- N/A *or* Added/Fixed/Improved ...
This commit is contained in:
warrenjokinen 2025-09-29 08:11:48 -06:00 committed by GitHub
parent f2efe78feb
commit 0da3f9ffda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -473,7 +473,7 @@ fn generate_big_table_of_actions() -> String {
output.push_str(action.name);
output.push_str("</code><br>\n");
if !action.deprecated_aliases.is_empty() {
output.push_str("Deprecated Aliases:");
output.push_str("Deprecated Alias(es): ");
for alias in action.deprecated_aliases.iter() {
output.push_str("<code>");
output.push_str(alias);