Skip to content

Commit 4beeb28

Browse files
committed
deploy: f0e8d44
1 parent bd4feba commit 4beeb28

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dev/src/uu_kill/kill.rs.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,10 @@
225225
<span class="kw">use </span>uucore::display::Quotable;
226226
<span class="kw">use </span>uucore::error::{FromIo, UError, UResult, USimpleError};
227227
<span class="kw">use </span>uucore::signals::{signal_by_name_or_value, ALL_SIGNALS};
228-
<span class="kw">use </span>uucore::{format_usage, show};
228+
<span class="kw">use </span>uucore::{format_usage, help_about, help_usage, show};
229229

230-
<span class="kw">static </span>ABOUT: <span class="kw-2">&amp;</span>str = <span class="string">&quot;Send signal to processes or list information about signals.&quot;</span>;
231-
<span class="kw">const </span>USAGE: <span class="kw-2">&amp;</span>str = <span class="string">&quot;{} [OPTIONS]... PID...&quot;</span>;
230+
<span class="kw">static </span>ABOUT: <span class="kw-2">&amp;</span>str = <span class="macro">help_about!</span>(<span class="string">&quot;kill.md&quot;</span>);
231+
<span class="kw">const </span>USAGE: <span class="kw-2">&amp;</span>str = <span class="macro">help_usage!</span>(<span class="string">&quot;kill.md&quot;</span>);
232232

233233
<span class="kw">pub mod </span>options {
234234
<span class="kw">pub static </span>PIDS_OR_SIGNALS: <span class="kw-2">&amp;</span>str = <span class="string">&quot;pids_or_signals&quot;</span>;

dev/src/uu_tac/tac.rs.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,12 @@
335335
<span class="kw">use </span>uucore::display::Quotable;
336336
<span class="kw">use </span>uucore::error::UError;
337337
<span class="kw">use </span>uucore::error::UResult;
338-
<span class="kw">use </span>uucore::{format_usage, show};
338+
<span class="kw">use </span>uucore::{format_usage, help_about, help_usage, show};
339339

340340
<span class="kw">use </span><span class="kw">crate</span>::error::TacError;
341341

342-
<span class="kw">static </span>USAGE: <span class="kw-2">&amp;</span>str = <span class="string">&quot;{} [OPTION]... [FILE]...&quot;</span>;
343-
<span class="kw">static </span>ABOUT: <span class="kw-2">&amp;</span>str = <span class="string">&quot;Write each file to standard output, last line first.&quot;</span>;
342+
<span class="kw">static </span>USAGE: <span class="kw-2">&amp;</span>str = <span class="macro">help_usage!</span>(<span class="string">&quot;tac.md&quot;</span>);
343+
<span class="kw">static </span>ABOUT: <span class="kw-2">&amp;</span>str = <span class="macro">help_about!</span>(<span class="string">&quot;tac.md&quot;</span>);
344344

345345
<span class="kw">mod </span>options {
346346
<span class="kw">pub static </span>BEFORE: <span class="kw-2">&amp;</span>str = <span class="string">&quot;before&quot;</span>;

0 commit comments

Comments
 (0)