diff --git a/www/perl-magick.html b/www/perl-magick.html
index 37f999f..078e3fb 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -2312,12 +2312,16 @@
 
 <p>Histogram() returns the unique colors in the image and a count for each one. The returned values are an array of red, green, blue, opacity, and count values.</p>
 
-<p>The IntensityProjection() method returns the maximum (or minimum) intensity
-projection for an image sequence.  For example, to compute the maximum intensity
-projection:</p>
+<p>The Maximum() method returns the maximum intensity of an image sequence:</p>
 
 <pre class="code">
-  $p = $image-&gt;IntensityProjection(projection=>'false');
+  $p = $image-&gt;Maximum();
+</pre>
+
+<p>The Minimum() method returns the minimum intensity of an image sequence:</p>
+
+<pre class="code">
+  $p = $image-&gt;Minimum();
 </pre>
 
 <p>The Morph() method morphs a set of images. Both the image pixels and size are linearly interpolated to give the appearance of a meta-morphosis from one image to the next:</p>