summaryrefslogtreecommitdiffstats
path: root/src/widgets/process_table/sort_table.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 /src/widgets/process_table/sort_table.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 'src/widgets/process_table/sort_table.rs')
-rw-r--r--src/widgets/process_table/sort_table.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/process_table/sort_table.rs b/src/widgets/process_table/sort_table.rs
index 507a4cb7..0a0e1e1c 100644
--- a/src/widgets/process_table/sort_table.rs
+++ b/src/widgets/process_table/sort_table.rs
@@ -10,7 +10,7 @@ use crate::{
pub struct SortTableColumn;
impl ColumnHeader for SortTableColumn {
- fn text(&self) -> std::borrow::Cow<'static, str> {
+ fn text(&self) -> Cow<'static, str> {
"Sort By".into()
}
}