From f628b3c018047e443d36f5752033bcffe7000dd7 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Thu, 14 Apr 2011 17:51:56 +0100 Subject: [PATCH] fix a docs typo small doc improvement --- libvips/mask/im_gaussmasks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvips/mask/im_gaussmasks.c b/libvips/mask/im_gaussmasks.c index 1b297715..d21754c0 100644 --- a/libvips/mask/im_gaussmasks.c +++ b/libvips/mask/im_gaussmasks.c @@ -211,7 +211,7 @@ im_gauss_imask( const char *filename, double sigma, double min_ampl ) * im_gauss_imask_sep() works exactly as im_gauss_imask(), but returns only * the central line of the mask. This is useful with im_convsep(). * - * See also: im_gauss_dmask(), im_gauss_imask_sep(), im_conv(), im_convsep(). + * See also: im_gauss_dmask(), im_convsep(). * * Returns: the calculated mask on success, or NULL on error. */ @@ -239,5 +239,5 @@ im_gauss_imask_sep( const char *filename, double sigma, double min_ampl ) im_free_imask( im ); - return( im2 ) ; + return( im2 ); }