fix typo in SplitTableService.cs

paramter -> parameter

Signed-off-by: Ikko Ashimine <eltociear@gmail.com>
This commit is contained in:
Ikko Ashimine
2022-11-14 13:22:01 +00:00
committed by Gitee
parent c573ba8d09
commit 8264515b5c

View File

@@ -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()