From 8264515b5cf9ec3dfe42e7c8106a7f30b446351a Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 14 Nov 2022 13:22:01 +0000 Subject: [PATCH] fix typo in SplitTableService.cs paramter -> parameter Signed-off-by: Ikko Ashimine --- Src/Asp.Net/SqlSugar/IntegrationServices/SplitTableService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Asp.Net/SqlSugar/IntegrationServices/SplitTableService.cs b/Src/Asp.Net/SqlSugar/IntegrationServices/SplitTableService.cs index d2fb6c00c..0412abe6f 100644 --- a/Src/Asp.Net/SqlSugar/IntegrationServices/SplitTableService.cs +++ b/Src/Asp.Net/SqlSugar/IntegrationServices/SplitTableService.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Reflection; @@ -223,7 +223,7 @@ namespace SqlSugar case SplitType.Year: return Convert.ToDateTime(time.ToString("yyyy-01-01")); default: - throw new Exception($"SplitType paramter error "); + throw new Exception($"SplitType parameter error "); } } private DateTime GetMondayDate()