From f3474328b0ca751ab6ca2186cd7c7fd773f7420c Mon Sep 17 00:00:00 2001 From: Nikolai Vincent Vaags Date: Wed, 7 May 2025 09:37:29 +0200 Subject: [PATCH] fix `attrubute` typo in doc --- sqlx-core/src/from_row.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-core/src/from_row.rs b/sqlx-core/src/from_row.rs index ecd5847f30..5b3904011e 100644 --- a/sqlx-core/src/from_row.rs +++ b/sqlx-core/src/from_row.rs @@ -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