From c2722d812025603d997d2816035b34e5f2437eaa Mon Sep 17 00:00:00 2001 From: Richard Thompson Date: Fri, 16 Feb 2018 15:19:16 +0000 Subject: [PATCH] Grammar improvement Improved the grammar of an error message --- .../Models/PublishedContent/PublishedContentModelFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Models/PublishedContent/PublishedContentModelFactory.cs b/src/Umbraco.Core/Models/PublishedContent/PublishedContentModelFactory.cs index b3ad56d959..768044e0a8 100644 --- a/src/Umbraco.Core/Models/PublishedContent/PublishedContentModelFactory.cs +++ b/src/Umbraco.Core/Models/PublishedContent/PublishedContentModelFactory.cs @@ -42,7 +42,7 @@ namespace Umbraco.Core.Models.PublishedContent var typeName = attribute == null ? type.Name : attribute.ContentTypeAlias; if (constructors.ContainsKey(typeName)) - throw new InvalidOperationException(string.Format("More that one type want to be a model for content type {0}.", typeName)); + throw new InvalidOperationException(string.Format("More than one type wants to be a model for content type {0}.", typeName)); // should work everywhere, but slow //_constructors[typeName] = constructor;