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 10:11:48 -04:00
committed by GitHub
parent f2efe78feb
commit 0da3f9ffda
+1 -1
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);