diff --git a/dev/src/uu_kill/kill.rs.html b/dev/src/uu_kill/kill.rs.html
index 0d8125a17..dfaf3ee8b 100644
--- a/dev/src/uu_kill/kill.rs.html
+++ b/dev/src/uu_kill/kill.rs.html
@@ -225,10 +225,10 @@
use uucore::display::Quotable;
use uucore::error::{FromIo, UError, UResult, USimpleError};
use uucore::signals::{signal_by_name_or_value, ALL_SIGNALS};
-use uucore::{format_usage, show};
+use uucore::{format_usage, help_about, help_usage, show};
-static ABOUT: &str = "Send signal to processes or list information about signals.";
-const USAGE: &str = "{} [OPTIONS]... PID...";
+static ABOUT: &str = help_about!("kill.md");
+const USAGE: &str = help_usage!("kill.md");
pub mod options {
pub static PIDS_OR_SIGNALS: &str = "pids_or_signals";
diff --git a/dev/src/uu_tac/tac.rs.html b/dev/src/uu_tac/tac.rs.html
index e97dcfd37..4e07bce0e 100644
--- a/dev/src/uu_tac/tac.rs.html
+++ b/dev/src/uu_tac/tac.rs.html
@@ -335,12 +335,12 @@
use uucore::display::Quotable;
use uucore::error::UError;
use uucore::error::UResult;
-use uucore::{format_usage, show};
+use uucore::{format_usage, help_about, help_usage, show};
use crate::error::TacError;
-static USAGE: &str = "{} [OPTION]... [FILE]...";
-static ABOUT: &str = "Write each file to standard output, last line first.";
+static USAGE: &str = help_usage!("tac.md");
+static ABOUT: &str = help_about!("tac.md");
mod options {
pub static BEFORE: &str = "before";