fix attrubute typo in doc (#3855)

This commit is contained in:
Nikolai Vincent Vaags 2025-05-08 02:06:34 +02:00 committed by GitHub
parent 3edc6199db
commit 92c3845952
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -251,7 +251,7 @@ use crate::{error::Error, row::Row};
/// represented as the _not_ NULL (in terms of DB) JSON value of `null`.
///
/// If you wish to describe a database row which _is_ NULLable but _cannot_ contain the JSON value `null`,
/// use the `#[sqlx(json(nullable))]` attrubute.
/// use the `#[sqlx(json(nullable))]` attribute.
///
/// For example
/// ```rust,ignore