From 5d07b21db6fbac57d5310c6f6274be012fb31cbd Mon Sep 17 00:00:00 2001 From: Alex Wiese Date: Sun, 12 Jan 2020 18:15:04 +1030 Subject: [PATCH] Update README.md Fix code compilation error in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1c9bca997..ba897fa7ef 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ using SixLabors.ImageSharp.PixelFormats; // Image.Load(string path) is a shortcut for our default type. // Other pixel formats use Image.Load(string path)) -using (Image image = Image.Load("foo.jpg")) +using (Image image = Image.Load("foo.jpg")) { image.Mutate(x => x .Resize(image.Width / 2, image.Height / 2)