From 353807dee09a81adb87523e0c4ae90b65f0f1649 Mon Sep 17 00:00:00 2001 From: Ron <1009029+ronwarner@users.noreply.github.com> Date: Thu, 7 Dec 2023 16:47:42 -0600 Subject: [PATCH] Update SqlMapper.cs Fixed typo in comments --- Dapper/SqlMapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dapper/SqlMapper.cs b/Dapper/SqlMapper.cs index fb151758e..b5b6c2ae4 100644 --- a/Dapper/SqlMapper.cs +++ b/Dapper/SqlMapper.cs @@ -631,7 +631,7 @@ private static int ExecuteImpl(this IDbConnection cnn, ref CommandDefinition com } else { - cmd.CommandText = masterSql; // because we do magic replaces on "in" etc + cmd.CommandText = masterSql; // because we do magic replacements on "in" etc cmd.Parameters.Clear(); // current code is Add-tastic } info!.ParamReader!(cmd, obj);