Skip to content

Commit

Permalink
Merge pull request #25 from digital-society-coop/move-repo
Browse files Browse the repository at this point in the history
Update repo references
  • Loading branch information
ekadas committed Oct 17, 2023
2 parents 6a52953 + 4c972d6 commit fbd5313
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "axum-sqlx-tx"
description = "Request-scoped SQLx transactions for axum"
version = "0.6.0"
license = "MIT"
repository = "https://github.com/wasdacraic/axum-sqlx-tx/"
repository = "https://github.com/digital-society-coop/axum-sqlx-tx/"
edition = "2021"
include = [
"LICENSE",
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
//! ## Error handling
//!
//! `axum` requires that middleware do not return errors, and that the errors returned by extractors
//! implement `IntoResponse`. By default, [`Error`](Error) is used by [`Layer`] and [`Tx`] to
//! implement `IntoResponse`. By default, [`Error`] is used by [`Layer`] and [`Tx`] to
//! convert errors into HTTP 500 responses, with the error's `Display` value as the response body,
//! however it's generally not a good practice to return internal error details to clients!
//!
Expand Down Expand Up @@ -107,7 +107,7 @@
//!
//! See [`examples/`][examples] in the repo for more examples.
//!
//! [examples]: https://github.com/wasdacraic/axum-sqlx-tx/tree/master/examples
//! [examples]: https://github.com/digital-society-coop/axum-sqlx-tx/tree/master/examples

#![cfg_attr(doc, deny(warnings))]

Expand Down Expand Up @@ -154,7 +154,7 @@ pub use crate::{
/// ```
#[derive(Debug, thiserror::Error)]
pub enum Error {
/// Indicates that the [`Layer`](crate::Layer) middleware was not installed.
/// Indicates that the [`Layer`] middleware was not installed.
#[error("required extension not registered; did you add the axum_sqlx_tx::Layer middleware?")]
MissingExtension,

Expand Down

0 comments on commit fbd5313

Please sign in to comment.