From d6dd95ae5827d8e1110f9cc3e8a41c700d830c16 Mon Sep 17 00:00:00 2001 From: maxtaran2010 Date: Wed, 8 Jul 2026 12:30:57 +0300 Subject: [PATCH] fix: correct spelling of "implementer" in column.rs comment --- sqlx-core/src/column.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-core/src/column.rs b/sqlx-core/src/column.rs index e9b6aec813..888f6e587e 100644 --- a/sqlx-core/src/column.rs +++ b/sqlx-core/src/column.rs @@ -30,7 +30,7 @@ pub trait Column: 'static + Send + Sync + Debug { /// Returns [`ColumnOrigin::Unknown`] if the database driver does not have that information, /// or has not overridden this method. // This method returns an owned value instead of a reference, - // to give the implementor more flexibility. + // to give the implementer more flexibility. fn origin(&self) -> ColumnOrigin { ColumnOrigin::Unknown }