fix a docs typo

small doc improvement
This commit is contained in:
John Cupitt 2011-04-14 17:51:56 +01:00
parent 172b9f920e
commit f628b3c018
1 changed files with 2 additions and 2 deletions

View File

@ -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 );
}