Browse Source
Merge pull request #2306 from stefannikolei/stefannikolei/fix/comments
Correct IccProfile comment
pull/2311/head
James Jackson-South
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
src/ImageSharp/Metadata/ImageFrameMetadata.cs
-
src/ImageSharp/Metadata/ImageMetadata.cs
|
|
|
@ -57,7 +57,7 @@ public sealed class ImageFrameMetadata : IDeepCloneable<ImageFrameMetadata> |
|
|
|
public XmpProfile XmpProfile { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the list of ICC profiles.
|
|
|
|
/// Gets or sets the ICC profile.
|
|
|
|
/// </summary>
|
|
|
|
public IccProfile IccProfile { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
@ -145,7 +145,7 @@ public sealed class ImageMetadata : IDeepCloneable<ImageMetadata> |
|
|
|
public XmpProfile XmpProfile { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the list of ICC profiles.
|
|
|
|
/// Gets or sets the ICC profile.
|
|
|
|
/// </summary>
|
|
|
|
public IccProfile IccProfile { get; set; } |
|
|
|
|
|
|
|
|