Skip to content

Commit

Permalink
chore(compat): make SettingError public
Browse files Browse the repository at this point in the history
  • Loading branch information
the-wondersmith authored and oknozor committed Aug 1, 2023
1 parent a666bca commit 3e86732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use serde::de::StdError;
use std::fmt::{Debug, Display, Formatter};

#[derive(Debug)]
pub(crate) struct SettingError(config::ConfigError);
pub struct SettingError(config::ConfigError);

impl Display for SettingError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
Expand Down

0 comments on commit 3e86732

Please sign in to comment.