From d14ccd233e951dc9ac526d55acf36c4a00e3c1a6 Mon Sep 17 00:00:00 2001 From: Watson Date: Sun, 18 Feb 2024 02:46:46 +0900 Subject: [PATCH] Fix error in SolidFill example (#16) https://github.com/rmagick/rmagick/pull/1469 --- solidfill.rb.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solidfill.rb.html b/solidfill.rb.html index cabd37f..336e7e9 100644 --- a/solidfill.rb.html +++ b/solidfill.rb.html @@ -16,7 +16,7 @@

solidfill.rb

# Demonstrate the SolidFill class fill = Magick::SolidFill.new('orange') -img = Magick::Image.new(Cols, Rows, fill) +img = Magick::Image.new(300, 100, fill) # Annotate the filled image with the code that created the fill.