From 98123966e6d04a560d26728fa8aa55f953426821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Sat, 1 Jul 2023 23:14:53 -0300 Subject: [PATCH] Updated sql.Scan, sql.Value and Modifiers (markdown) --- sql.Scan,-sql.Value-and-Modifiers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql.Scan,-sql.Value-and-Modifiers.md b/sql.Scan,-sql.Value-and-Modifiers.md index d712379..cdd1d4b 100644 --- a/sql.Scan,-sql.Value-and-Modifiers.md +++ b/sql.Scan,-sql.Value-and-Modifiers.md @@ -98,4 +98,4 @@ This registration should be performed inside your code before making any calls t ### Modifiers vs `sql.Scanner` and `sql.Valuer` interfaces -When using a Modifier, if that Modifier specifies a `Scan` function and the type of the attribute implements the `sql.Scanner` interface the method implementation will be ignored in favor of the Modifier implementation. The same is valid for the Modifier Value function when the type implements the `sql.Valuer` interface. \ No newline at end of file +When using a Modifier, if that Modifier specifies a `Scan()` function and the type of the affected attribute implements the `sql.Scanner` interface the method implementation will be ignored in favor of the Modifier implementation. The same is valid for the Modifier `Value()` function when the type implements the `sql.Valuer` interface. \ No newline at end of file