Browse Source

Small text change.

pull/324/head
Keith W 7 years ago
committed by GitHub
parent
commit
1893965600
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/Squidex.Domain.Apps.Entities/Contents/ContentQueryService.cs

6
src/Squidex.Domain.Apps.Entities/Contents/ContentQueryService.cs

@ -120,12 +120,12 @@ namespace Squidex.Domain.Apps.Entities.Contents
private IContentEntity Transform(QueryContext context, ISchemaEntity schema, bool checkType, IContentEntity content)
{
return TansformCore(context, schema, checkType, Enumerable.Repeat(content, 1)).FirstOrDefault();
return TransformCore(context, schema, checkType, Enumerable.Repeat(content, 1)).FirstOrDefault();
}
private IResultList<IContentEntity> Transform(QueryContext context, ISchemaEntity schema, bool checkType, IResultList<IContentEntity> contents)
{
var transformed = TansformCore(context, schema, checkType, contents);
var transformed = TransformCore(context, schema, checkType, contents);
return ResultList.Create(contents.Total, transformed);
}
@ -137,7 +137,7 @@ namespace Squidex.Domain.Apps.Entities.Contents
return ResultList.Create(contents.Total, sorted);
}
private IEnumerable<IContentEntity> TansformCore(QueryContext context, ISchemaEntity schema, bool checkType, IEnumerable<IContentEntity> contents)
private IEnumerable<IContentEntity> TransformCore(QueryContext context, ISchemaEntity schema, bool checkType, IEnumerable<IContentEntity> contents)
{
using (Profiler.TraceMethod<ContentQueryService>())
{

Loading…
Cancel
Save