diff --git a/src/Magick.NET/Formats/Dds/DdsReadDefines.cs b/src/Magick.NET/Formats/Dds/DdsReadDefines.cs
index 0bce32ae6e..623d26af84 100644
--- a/src/Magick.NET/Formats/Dds/DdsReadDefines.cs
+++ b/src/Magick.NET/Formats/Dds/DdsReadDefines.cs
@@ -17,7 +17,7 @@ public MagickFormat Format
=> MagickFormat.Dds;
///
- /// Gets or sets a value indicating wether mipmaps should be skipped (dds:skip-mipmaps).
+ /// Gets or sets a value indicating whether mipmaps should be skipped (dds:skip-mipmaps).
///
public bool? SkipMipmaps { get; set; }
diff --git a/src/Magick.NET/Formats/Dng/DngReadDefines.cs b/src/Magick.NET/Formats/Dng/DngReadDefines.cs
index db468ee7d4..bc83b9de19 100644
--- a/src/Magick.NET/Formats/Dng/DngReadDefines.cs
+++ b/src/Magick.NET/Formats/Dng/DngReadDefines.cs
@@ -11,7 +11,7 @@ namespace ImageMagick.Formats;
public sealed class DngReadDefines : IReadDefines
{
///
- /// Gets or sets a value indicating wether auto brightness should be used (dng:no-auto-bright).
+ /// Gets or sets a value indicating whether auto brightness should be used (dng:no-auto-bright).
///
public bool? DisableAutoBrightness { get; set; }
@@ -32,18 +32,18 @@ public MagickFormat Format
public DngOutputColor? OutputColor { get; set; }
///
- /// Gets or sets a value indicating wether the embedded thumbnail should be read (dng:read-thumbnail). This profile can be
+ /// Gets or sets a value indicating whether the embedded thumbnail should be read (dng:read-thumbnail). This profile can be
/// read by calling with dng:thumbnail as the name of the profile.
///
public bool? ReadThumbnail { get; set; }
///
- /// Gets or sets a value indicating wether auto whitebalance should be used (dng:use-auto-wb).
+ /// Gets or sets a value indicating whether auto white balance should be used (dng:use-auto-wb).
///
public bool? UseAutoWhitebalance { get; set; }
///
- /// Gets or sets a value indicating wether the whitebalance of the camera should be used (dng:use-camera-wb).
+ /// Gets or sets a value indicating whether the white balance of the camera should be used (dng:use-camera-wb).
///
public bool? UseCameraWhitebalance { get; set; }
diff --git a/src/Magick.NET/Formats/Pdf/PdfWriteDefines.cs b/src/Magick.NET/Formats/Pdf/PdfWriteDefines.cs
index d0cc114445..15c9dc9e0a 100644
--- a/src/Magick.NET/Formats/Pdf/PdfWriteDefines.cs
+++ b/src/Magick.NET/Formats/Pdf/PdfWriteDefines.cs
@@ -59,7 +59,7 @@ public MagickFormat Format
public string? Subject { get; set; }
///
- /// Gets or sets a value indicating wether a thumbnail should be added to the pdf document (pdf:thumbnail).
+ /// Gets or sets a value indicating whether a thumbnail should be added to the pdf document (pdf:thumbnail).
///
public bool? Thumbnail { get; set; }
diff --git a/src/Magick.NET/Formats/WebP/WebPWriteDefines.cs b/src/Magick.NET/Formats/WebP/WebPWriteDefines.cs
index cd068e2d8e..821c16b8d6 100644
--- a/src/Magick.NET/Formats/WebP/WebPWriteDefines.cs
+++ b/src/Magick.NET/Formats/WebP/WebPWriteDefines.cs
@@ -27,17 +27,17 @@ public sealed class WebPWriteDefines : IWriteDefines
public int? AlphaQuality { get; set; }
///
- /// Gets or sets a value indicating wether the algorithm should spend additional time optimizing the filtering strength to reach a well-balanced quality (webp:auto-filter).
+ /// Gets or sets a value indicating whether the algorithm should spend additional time optimizing the filtering strength to reach a well-balanced quality (webp:auto-filter).
///
public bool? AutoFilter { get; set; }
///
- /// Gets or sets a value indicating wether a similar compression to that of JPEG but with less degradation should be used. (webp:emulate-jpeg-size).
+ /// Gets or sets a value indicating whether a similar compression to that of JPEG but with less degradation should be used. (webp:emulate-jpeg-size).
///
public bool? EmulateJpegSize { get; set; }
///
- /// Gets or sets a value indicating wether RGB values should be preserved in transparent area. It's disabled by default to help compressibility.
+ /// Gets or sets a value indicating whether RGB values should be preserved in transparent area. It's disabled by default to help compressibility.
///
public bool? Exact { get; set; }
@@ -68,12 +68,12 @@ public MagickFormat Format
public WebPImageHint? ImageHint { get; set; }
///
- /// Gets or sets a value indicating wether the image should be encoded without any loss (webp:lossless).
+ /// Gets or sets a value indicating whether the image should be encoded without any loss (webp:lossless).
///
public bool? Lossless { get; set; }
///
- /// Gets or sets a value indicating wether the memory usage should be reduced (webp:low-memory).
+ /// Gets or sets a value indicating whether the memory usage should be reduced (webp:low-memory).
///
public bool? LowMemory { get; set; }
@@ -114,7 +114,7 @@ public MagickFormat Format
public int? Segment { get; set; }
///
- /// Gets or sets a value indicating wether the compressed picture should be exported back (webp:show-compressed).
+ /// Gets or sets a value indicating whether the compressed picture should be exported back (webp:show-compressed).
///
public bool? ShowCompressed { get; set; }
@@ -134,12 +134,12 @@ public MagickFormat Format
public int? TargetSize { get; set; }
///
- /// Gets or sets a value indicating wether multi-threaded encoding should be enabled (webp:thread-level).
+ /// Gets or sets a value indicating whether multi-threaded encoding should be enabled (webp:thread-level).
///
public bool? ThreadLevel { get; set; }
///
- /// Gets or sets a value indicating wether sharp (and slow) RGB->YUV conversion should be used. (webp:use-sharp-yuv).
+ /// Gets or sets a value indicating whether sharp (and slow) RGB->YUV conversion should be used. (webp:use-sharp-yuv).
///
public bool? UseSharpYuv { get; set; }