summaryrefslogtreecommitdiffstats
path: root/src/widgets/process_table/proc_widget_column.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/process_table/proc_widget_column.rs')
-rw-r--r--src/widgets/process_table/proc_widget_column.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/process_table/proc_widget_column.rs b/src/widgets/process_table/proc_widget_column.rs
index ff99b3f6..91d7277d 100644
--- a/src/widgets/process_table/proc_widget_column.rs
+++ b/src/widgets/process_table/proc_widget_column.rs
@@ -47,7 +47,7 @@ impl<'de> Deserialize<'de> for ProcColumn {
"state" => Ok(ProcColumn::State),
"user" => Ok(ProcColumn::User),
"time" => Ok(ProcColumn::Time),
- _ => Err(D::Error::custom("doesn't match any column type")),
+ _ => Err(Error::custom("doesn't match any column type")),
}
}
}