Browse Source

fix Gray8.ToString()

af/merge-core
Anton Firszov 7 years ago
parent
commit
59d548cfd3
  1. 2
      src/ImageSharp/PixelFormats/PixelImplementations/Gray8.cs

2
src/ImageSharp/PixelFormats/PixelImplementations/Gray8.cs

@ -140,7 +140,7 @@ namespace SixLabors.ImageSharp.PixelFormats
public bool Equals(Gray8 other) => this.PackedValue.Equals(other.PackedValue);
/// <inheritdoc />
public override string ToString() => $"Gray8({this.PackedValue}";
public override string ToString() => $"Gray8({this.PackedValue})";
/// <inheritdoc />
[MethodImpl(InliningOptions.ShortMethod)]

Loading…
Cancel
Save