--- vips-8.2.2/libvips/conversion/premultiply.c.orig 2016-01-24 10:23:24.000000000 +0000 +++ vips-8.2.2/libvips/conversion/premultiply.c 2016-02-11 13:49:40.886596026 +0000 @@ -281,7 +281,7 @@ * alpha = clip( 0, in[in.bands - 1], @max_alpha ); * norm = alpha / @max_alpha; * out = [in[0] * norm, ..., in[in.bands - 1] * norm, alpha]; - * |] + * ]| * * So for an N-band image, the first N - 1 bands are multiplied by the clipped * and normalised final band, the final band is clipped. --- vips-8.2.2/libvips/conversion/unpremultiply.c.orig 2016-01-24 10:23:49.000000000 +0000 +++ vips-8.2.2/libvips/conversion/unpremultiply.c 2016-02-11 13:49:54.760871644 +0000 @@ -296,7 +296,7 @@ * out = [0, ..., 0, alpha]; * else * out = [in[0] / norm, ..., in[in.bands - 1] / norm, alpha]; - * |] + * ]| * * So for an N-band image, the first N - 1 bands are divided by the clipped * and normalised final band, the final band is clipped.