diff --git a/src/Orchard/Data/Conventions/StringLengthConvention.cs b/src/Orchard/Data/Conventions/StringLengthConvention.cs index 996205c18..2fb7eaa23 100644 --- a/src/Orchard/Data/Conventions/StringLengthConvention.cs +++ b/src/Orchard/Data/Conventions/StringLengthConvention.cs @@ -5,7 +5,7 @@ using FluentNHibernate.Conventions.Instances; namespace Orchard.Data.Conventions { public class StringLengthMaxAttribute : StringLengthAttribute { public StringLengthMaxAttribute() : base(10000) { - // 10000 is an arbetrary number large enough to be in the nvarchar(max) range + // 10000 is an arbitrary number large enough to be in the nvarchar(max) range } }