Small doc correction. (#3755)

When sqlx-core/src/from_row.rs was updated to implement FromRow for tuples of up to 16 values, a comment was left stating that it was implemented up to tuples of 9 values.
This commit is contained in:
Marti Serra
2025-02-22 22:33:14 +01:00
committed by GitHub
parent a9dfb4f2c1
commit 3dec1d186a

View File

@@ -313,7 +313,7 @@ where
}
// implement FromRow for tuples of types that implement Decode
// up to tuples of 9 values
// up to tuples of 16 values
macro_rules! impl_from_row_for_tuple {
($( ($idx:tt) -> $T:ident );+;) => {