From 2d424349113c292b892de18fc744e1f1e85f42c2 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 25 Aug 2022 16:39:34 +0200 Subject: [PATCH] link: move use statement after copyright --- src/uu/link/src/link.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/link/src/link.rs b/src/uu/link/src/link.rs index 9768e467e..041619938 100644 --- a/src/uu/link/src/link.rs +++ b/src/uu/link/src/link.rs @@ -1,10 +1,10 @@ -use clap::builder::ValueParser; // * This file is part of the uutils coreutils package. // * // * (c) Michael Gehring // * // * For the full copyright and license information, please view the LICENSE // * file that was distributed with this source code. +use clap::builder::ValueParser; use clap::{crate_version, Arg, Command}; use std::ffi::OsString; use std::fs::hard_link;