]> granicus.if.org Git - imagemagick/commitdiff
spelling (separate, separately)
authorglennrp <glennrp@git.imagemagick.org>
Wed, 2 Mar 2011 19:25:28 +0000 (19:25 +0000)
committerglennrp <glennrp@git.imagemagick.org>
Wed, 2 Mar 2011 19:25:28 +0000 (19:25 +0000)
magick/deprecate.c
magick/enhance.c
magick/layer.c
magick/morphology.c
magick/threshold.c

index 4c9d3d3b2121667b7631853f0dda7fdb9a006b68..8be82e8c9b1611ae914d2a8bd2e9f6914d1b8a52 100644 (file)
@@ -3937,7 +3937,7 @@ MagickExport unsigned int IsSubimage(const char *geometry,
 %  LevelImageColor() will map the given color to "black" and "white"
 %  values, limearly spreading out the colors, and level values on a channel by
 %  channel bases, as per LevelImage().  The given colors allows you to specify
-%  different level ranges for each of the color channels seperatally.
+%  different level ranges for each of the color channels separately.
 %
 %  If the boolean 'invert' is set true the image values will modifyed in the
 %  reverse direction. That is any existing "black" and "white" colors in the
index e84ec73da686fbc00b4fc97d31a4e13869095c68..fc155a3673f77ef3251a7c7b3a40fa419581aac2 100644 (file)
@@ -2852,7 +2852,7 @@ MagickExport MagickBooleanType LevelizeImageChannel(Image *image,
 %  LevelImageColor() maps the given color to "black" and "white" values,
 %  linearly spreading out the colors, and level values on a channel by channel
 %  bases, as per LevelImage().  The given colors allows you to specify
-%  different level ranges for each of the color channels seperatally.
+%  different level ranges for each of the color channels separately.
 %
 %  If the boolean 'invert' is set true the image values will modifyed in the
 %  reverse direction. That is any existing "black" and "white" colors in the
index c5be3a240fe71390bc17e7f090d2ba4dd59fbaf6..76bce6ae8b6c3bebe3a1cce3af2e03a922c2cd58 100644 (file)
@@ -2035,7 +2035,7 @@ MagickExport Image *MergeImageLayers(Image *image,
     page.height = (page.y < 0) ? height : height+page.y;
 
   /*
-    Handle "TrimBoundsLayer" method seperately to normal 'layer merge'
+    Handle "TrimBoundsLayer" method separately to normal 'layer merge'
   */
   if ( method == TrimBoundsLayer ) {
     number_images=GetImageListLength(image);
index d47dac7d5648425527a9a1c854ff5a6c922969ec..39b67212e926c6f0c2746fd6f8faa79c4b173588 100644 (file)
@@ -183,7 +183,7 @@ static inline KernelInfo *LastKernelInfo(KernelInfo *kernel)
 %         Values can be space or comma separated.  This is not recommended.
 %
 %  You can define a 'list of kernels' which can be used by some morphology
-%  operators A list is defined as a semi-colon seperated list kernels.
+%  operators A list is defined as a semi-colon separated list kernels.
 %
 %     " kernel ; kernel ; kernel ; "
 %
@@ -497,7 +497,7 @@ MagickExport KernelInfo *AcquireKernelInfo(const char *kernel_string)
 
   while ( GetMagickToken(p,NULL,token),  *token != '\0' ) {
 
-    /* ignore extra or multiple ';' kernel seperators */
+    /* ignore extra or multiple ';' kernel separators */
     if ( *token != ';' ) {
 
       /* tokens starting with alpha is a Named kernel */
@@ -3975,7 +3975,7 @@ MagickExport void ScaleGeometryKernelInfo (KernelInfo *kernel,
 %  For special kernels designed for locating shapes using 'Correlate', (often
 %  only containing +1 and -1 values, representing foreground/brackground
 %  matching) a special normalization method is provided to scale the positive
-%  values seperatally to those of the negative values, so the kernel will be
+%  values separately to those of the negative values, so the kernel will be
 %  forced to become a zero-sum kernel better suited to such searches.
 %
 %  WARNING: Correct normalization of the kernel assumes that the '*_range'
index feaefb8f74ff69d0331bdb2c79c1413eb7bfd923..43322a34f852c3b295a20dd8fa7e44f8bdb6d405 100644 (file)
@@ -1411,11 +1411,11 @@ MagickExport MagickBooleanType OrderedPosterizeImageChannel(Image *image,
       return(MagickFalse);
     }
   }
-  /* Set channel levels from extra comma seperated arguments
+  /* Set channel levels from extra comma separated arguments
      Default to 2, the single value given, or individual channel values
   */
 #if 1
-  { /* parse directly as a comma seperated list of integers */
+  { /* parse directly as a comma separated list of integers */
     char *p;
 
     p = strchr((char *) threshold_map,',');