Skip to content

Commit

Permalink
Missing dots
Browse files Browse the repository at this point in the history
  • Loading branch information
pawurb committed Jan 26, 2024
1 parent 53b45cd commit 90aee79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ pub async fn db_settings() -> Result<Vec<DbSettings>, PgExtrasError> {
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum PgExtrasError {
#[error("Both $DATABASE_URL and $PG_EXTRAS_DATABASE_URL are not set")]
#[error("Both $DATABASE_URL and $PG_EXTRAS_DATABASE_URL are not set.")]
MissingConfigVars(),
#[error("Cannot connect to database")]
#[error("Cannot connect to database.")]
DbConnectionError(String),
#[error("Unknown pg-extras error")]
#[error("Unknown pg-extras error.")]
Unknown(String),
}

Expand Down

0 comments on commit 90aee79

Please sign in to comment.