Skip to content

Commit

Permalink
Typo (#14741)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtkech authored Nov 24, 2023
1 parent 3f0242f commit d236ed4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace OrchardCore.Documents
/// <summary>
/// Serializes and deserializes an <see cref="IDocument"/> into and from a sequence of bytes.
/// </summary>
public interface IDocumentSerialiser
public interface IDocumentSerializer
{
/// <summary>
/// Serializes an <see cref="IDocument"/> into a sequence of bytes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class DocumentOptionsBase : DistributedCacheEntryOptions
public bool? CheckConcurrency { get; set; }
public bool? CheckConsistency { get; set; }
public TimeSpan? SynchronizationLatency { get; set; }
public IDocumentSerialiser Serializer { get; set; }
public IDocumentSerializer Serializer { get; set; }
public int CompressThreshold { get; set; }

// Only used by an explicit atomic update.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace OrchardCore.Documents
/// <summary>
/// Serializes and deserializes an <see cref="IDocument"/> into and from a sequence of bytes.
/// </summary>
public class DefaultDocumentSerializer : IDocumentSerialiser
public class DefaultDocumentSerializer : IDocumentSerializer
{
public static readonly DefaultDocumentSerializer Instance = new();

Expand Down
2 changes: 2 additions & 0 deletions src/docs/releases/1.8.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Release date: Not yet released

## Breaking Changes

The interface `OrchardCore.Documents.IDocumentSerialiser` has been renamed to `OrchardCore.Documents.IDocumentSerializer`.

### .NET support

This release removes support for `net6.0` and `net7.0`. Only `net8.0` is supported.
Expand Down

0 comments on commit d236ed4

Please sign in to comment.