diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-02-28 17:39:03 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2024-02-28 17:39:09 -0700 |
| commit | a8a9f66878c7e9af4626e6f34e5e8e93f20a5620 (patch) | |
| tree | bfb691b0a21ddb9bef9132e84e9f5d42f2df1140 /MediaBrowser.Model/Drawing/ImageFormat.cs | |
| parent | c5e723bccd723c4c08b7239c5205085be00bd10d (diff) | |
standardize docs
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageFormat.cs')
| -rw-r--r-- | MediaBrowser.Model/Drawing/ImageFormat.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageFormat.cs b/MediaBrowser.Model/Drawing/ImageFormat.cs index 671243e80..6a586f6e3 100644 --- a/MediaBrowser.Model/Drawing/ImageFormat.cs +++ b/MediaBrowser.Model/Drawing/ImageFormat.cs @@ -6,32 +6,32 @@ namespace MediaBrowser.Model.Drawing public enum ImageFormat { /// <summary> - /// The BMP. + /// BMP format. /// </summary> Bmp, /// <summary> - /// The GIF. + /// GIF format. /// </summary> Gif, /// <summary> - /// The JPG. + /// JPG format. /// </summary> Jpg, /// <summary> - /// The PNG. + /// PNG format. /// </summary> Png, /// <summary> - /// The webp. + /// WEBP format. /// </summary> Webp, /// <summary> - /// The svg format. + /// SVG format. /// </summary> Svg, } |
