Skip to content

Commit

Permalink
Fix typo in ReadingImages.md (#1446)
Browse files Browse the repository at this point in the history
  • Loading branch information
latere-a-latere committed Oct 4, 2023
1 parent a201344 commit cfa101a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/ReadingImages.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ using var imagesFromFile = new MagickImageCollection(SampleFiles.SnakewareJpg);

// Read from stream
using var memStream = LoadMemoryStreamImage();
using var imagesromStream = new MagickImageCollection(memStream);
using var imagesFromStream = new MagickImageCollection(memStream);

// Read from byte array
var data = LoadImageBytes();
Expand Down
2 changes: 1 addition & 1 deletion samples/Magick.NET.Samples/ReadImages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static void ReadImageWithMultipleFrames()

// Read from stream
using var memStream = LoadMemoryStreamImage();
using var imagesromStream = new MagickImageCollection(memStream);
using var imagesFromStream = new MagickImageCollection(memStream);

// Read from byte array
var data = LoadImageBytes();
Expand Down

0 comments on commit cfa101a

Please sign in to comment.