summaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authorYuri Astrakhan <yuriastrakhan@gmail.com>2023-10-22 22:29:03 -0400
committerGitHub <noreply@github.com>2023-10-22 22:29:03 -0400
commit1e16456d5f7bedc9dfc1148991353011243831cf (patch)
treef8c9e93d6510f23c8131358439238a62e3704fdc /build.rs
parent4174012b8f14cbf92536c103c924b280e7a53b58 (diff)
chore: Minor cleanup - remove un-needed ident qualifiers (#1307)
Keep code a bit tidier and consistent (i.e. if an identifier already has a `use` entry above, why in some cases still prove a full path to it?)
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index d3eb3749..58df60fd 100644
--- a/build.rs
+++ b/build.rs
@@ -57,7 +57,7 @@ fn btm_generate() -> io::Result<()> {
let man = clap_mangen::Man::new(app);
let mut buffer: Vec<u8> = Default::default();
man.render(&mut buffer)?;
- std::fs::write(manpage_out_dir.join("btm.1"), buffer)?;
+ fs::write(manpage_out_dir.join("btm.1"), buffer)?;
}
_ => {}
}