diff --git a/src/ImageSharp/Image.WrapMemory.cs b/src/ImageSharp/Image.WrapMemory.cs
index c2935bed93..4bb24a126b 100644
--- a/src/ImageSharp/Image.WrapMemory.cs
+++ b/src/ImageSharp/Image.WrapMemory.cs
@@ -7,7 +7,6 @@ using System.Buffers;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.MetaData;
using SixLabors.ImageSharp.PixelFormats;
-using SixLabors.Memory;
namespace SixLabors.ImageSharp
{
@@ -22,10 +21,10 @@ namespace SixLabors.ImageSharp
///
/// The pixel type
/// The
- /// The pixel memory
- /// The width of the memory image
- /// The height of the memory image
- /// The
+ /// The pixel memory.
+ /// The width of the memory image.
+ /// The height of the memory image.
+ /// The .
/// An instance
public static Image WrapMemory(
Configuration config,
@@ -45,10 +44,10 @@ namespace SixLabors.ImageSharp
///
/// The pixel type
/// The
- /// The pixel memory
- /// The width of the memory image
- /// The height of the memory image
- /// An instance
+ /// The pixel memory.
+ /// The width of the memory image.
+ /// The height of the memory image.
+ /// An instance.
public static Image WrapMemory(
Configuration config,
Memory pixelMemory,
@@ -64,11 +63,11 @@ namespace SixLabors.ImageSharp
/// allowing to view/manipulate it as an ImageSharp instance.
/// The memory is being observed, the caller remains responsible for managing it's lifecycle.
///
- /// The pixel type
- /// The pixel memory
- /// The width of the memory image
- /// The height of the memory image
- /// An instance
+ /// The pixel type.
+ /// The pixel memory.
+ /// The width of the memory image.
+ /// The height of the memory image.
+ /// An instance.
public static Image WrapMemory(
Memory pixelMemory,
int width,
@@ -88,8 +87,8 @@ namespace SixLabors.ImageSharp
/// The pixel type
/// The
/// The that is being transferred to the image
- /// The width of the memory image
- /// The height of the memory image
+ /// The width of the memory image.
+ /// The height of the memory image.
/// The
/// An instance
public static Image WrapMemory(
@@ -111,11 +110,11 @@ namespace SixLabors.ImageSharp
/// meaning that the caller is not allowed to dispose .
/// It will be disposed together with the result image.
///
- /// The pixel type
+ /// The pixel type.
/// The
- /// The that is being transferred to the image
- /// The width of the memory image
- /// The height of the memory image
+ /// The that is being transferred to the image.
+ /// The width of the memory image.
+ /// The height of the memory image.
/// An instance
public static Image WrapMemory(
Configuration config,
@@ -135,10 +134,10 @@ namespace SixLabors.ImageSharp
/// It will be disposed together with the result image.
///
/// The pixel type
- /// The that is being transferred to the image
- /// The width of the memory image
- /// The height of the memory image
- /// An instance
+ /// The that is being transferred to the image.
+ /// The width of the memory image.
+ /// The height of the memory image.
+ /// An instance.
public static Image WrapMemory(
IMemoryOwner pixelMemoryOwner,
int width,
diff --git a/src/ImageSharp/ImageExtensions.Internal.cs b/src/ImageSharp/ImageExtensions.Internal.cs
index dfdbbd89b8..5b5e566659 100644
--- a/src/ImageSharp/ImageExtensions.Internal.cs
+++ b/src/ImageSharp/ImageExtensions.Internal.cs
@@ -3,7 +3,6 @@
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
-using SixLabors.Memory;
namespace SixLabors.ImageSharp
{