From 284d168cd7e87b6e0be9677fbeb396d287f38595 Mon Sep 17 00:00:00 2001 From: Nicholas-Westby Date: Tue, 25 Mar 2014 20:45:28 -0700 Subject: [PATCH] Replaced "retreive" with "retrieve". --- .../Persistence/Repositories/ContentRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Persistence/Repositories/ContentRepository.cs b/src/Umbraco.Core/Persistence/Repositories/ContentRepository.cs index 7e9d7c20a4..3a9e06616b 100644 --- a/src/Umbraco.Core/Persistence/Repositories/ContentRepository.cs +++ b/src/Umbraco.Core/Persistence/Repositories/ContentRepository.cs @@ -433,7 +433,7 @@ namespace Umbraco.Core.Persistence.Repositories } else { - //In order to update the ContentVersion we need to retreive its primary key id + //In order to update the ContentVersion we need to retrieve its primary key id var contentVerDto = Database.SingleOrDefault("WHERE VersionId = @Version", new { Version = entity.Version }); contentVersionDto.Id = contentVerDto.Id; @@ -638,4 +638,4 @@ namespace Umbraco.Core.Persistence.Repositories return currentName; } } -} \ No newline at end of file +}