From 36e93e12d662b2e629862d0ca434e5e2319dccb6 Mon Sep 17 00:00:00 2001 From: John Shin Date: Tue, 2 May 2023 12:38:12 -0700 Subject: [PATCH] core: add header notice for update control --- src/uucore/src/lib/mods/update_control.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/uucore/src/lib/mods/update_control.rs b/src/uucore/src/lib/mods/update_control.rs index c0b2cc5ef..cf5deb55c 100644 --- a/src/uucore/src/lib/mods/update_control.rs +++ b/src/uucore/src/lib/mods/update_control.rs @@ -1,3 +1,10 @@ +// This file is part of the uutils coreutils package. +// +// (c) John Shin +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + //! Implement GNU-style update functionality. //! //! - pre-defined [`clap`-Arguments][1] for inclusion in utilities that @@ -28,7 +35,7 @@ //! .arg(update_control::arguments::update()) //! .arg(update_control::arguments::update_no_args()) //! .get_matches_from(vec![ -//! "command", "--update=older" +//! "commmand", "--update=older" //! ]); //! //! let update_mode = update_control::determine_update_mode(&matches);