diff --git a/src/ImageSharp/Formats/ImageExtensions.Save.cs b/src/ImageSharp/Formats/ImageExtensions.Save.cs
index a6a65aef62..84f9d69b7e 100644
--- a/src/ImageSharp/Formats/ImageExtensions.Save.cs
+++ b/src/ImageSharp/Formats/ImageExtensions.Save.cs
@@ -105,7 +105,6 @@ public static Task SaveAsBmpAsync(this Image source, Stream stream, Cancellation
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsBmp(this Image source, Stream stream, BmpEncoder encoder)
=> source.Save(
stream,
@@ -208,7 +207,6 @@ public static Task SaveAsGifAsync(this Image source, Stream stream, Cancellation
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsGif(this Image source, Stream stream, GifEncoder encoder)
=> source.Save(
stream,
@@ -311,7 +309,6 @@ public static Task SaveAsJpegAsync(this Image source, Stream stream, Cancellatio
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsJpeg(this Image source, Stream stream, JpegEncoder encoder)
=> source.Save(
stream,
@@ -414,7 +411,6 @@ public static Task SaveAsPbmAsync(this Image source, Stream stream, Cancellation
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsPbm(this Image source, Stream stream, PbmEncoder encoder)
=> source.Save(
stream,
@@ -517,7 +513,6 @@ public static Task SaveAsPngAsync(this Image source, Stream stream, Cancellation
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsPng(this Image source, Stream stream, PngEncoder encoder)
=> source.Save(
stream,
@@ -620,7 +615,6 @@ public static Task SaveAsTgaAsync(this Image source, Stream stream, Cancellation
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsTga(this Image source, Stream stream, TgaEncoder encoder)
=> source.Save(
stream,
@@ -723,7 +717,6 @@ public static Task SaveAsWebpAsync(this Image source, Stream stream, Cancellatio
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsWebp(this Image source, Stream stream, WebpEncoder encoder)
=> source.Save(
stream,
@@ -826,7 +819,6 @@ public static Task SaveAsTiffAsync(this Image source, Stream stream, Cancellatio
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAsTiff(this Image source, Stream stream, TiffEncoder encoder)
=> source.Save(
stream,
diff --git a/src/ImageSharp/Formats/ImageExtensions.Save.tt b/src/ImageSharp/Formats/ImageExtensions.Save.tt
index c4a00b37cb..ae7648522f 100644
--- a/src/ImageSharp/Formats/ImageExtensions.Save.tt
+++ b/src/ImageSharp/Formats/ImageExtensions.Save.tt
@@ -124,7 +124,6 @@ namespace SixLabors.ImageSharp
/// The stream to save the image to.
/// The encoder to save the image with.
/// Thrown if the stream is null.
- /// A representing the asynchronous operation.
public static void SaveAs<#= fmt #>(this Image source, Stream stream, <#= fmt #>Encoder encoder)
=> source.Save(
stream,