From 6de52567d79ff85d05cdabd29fb86ff8aa42de86 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sun, 29 Mar 2020 16:00:51 -0700 Subject: [PATCH] docs: fix link to db types --- sqlx-core/src/types.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sqlx-core/src/types.rs b/sqlx-core/src/types.rs index fcccf4a5..43b5ab69 100644 --- a/sqlx-core/src/types.rs +++ b/sqlx-core/src/types.rs @@ -3,9 +3,9 @@ //! To see how each SQL type maps to a Rust type, see the corresponding `types` module for each //! database: //! -//! * [PostgreSQL](crate::postgres::types) -//! * [MySQL](crate::mysql::types) -//! * [SQLite](crate::sqlite::types) +//! * [PostgreSQL](postgres/types/index.html) +//! * [MySQL](mysql/types/index.html) +//! * [SQLite](sqlite/types/index.html) //! //! Any external types that have had [`Type`] implemented for, are re-exported in this module //! for convenience as downstream users need to use a compatible version of the external crate