summaryrefslogtreecommitdiffstats
path: root/src/options.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/options.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/options.rs')
-rw-r--r--src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.rs b/src/options.rs
index f2c56d9d..d220c319 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -538,7 +538,7 @@ pub fn get_widget_layout(
ret_bottom_layout
} else {
- return Err(error::BottomError::ConfigError(
+ return Err(BottomError::ConfigError(
"please have at least one widget under the '[[row]]' section.".to_string(),
));
}