From 9a3fcc74c19a587e837817a9a5f5762d6d92bf5c Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sun, 23 Nov 2014 14:02:38 +0000 Subject: [PATCH] oops, README dropped from dist --- Makefile.am | 1 + libvips/convolution/gaussblur.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index b361cae6..dc25e4e7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,6 +58,7 @@ EXTRA_DIST = \ libvips.supp \ acinclude.m4 \ depcomp \ + README.md \ $(C_DIST_DIR) \ $(P_DIST_DIR) \ $(P8_DIST_DIR) \ diff --git a/libvips/convolution/gaussblur.c b/libvips/convolution/gaussblur.c index c6795f87..d1bf2ac9 100644 --- a/libvips/convolution/gaussblur.c +++ b/libvips/convolution/gaussblur.c @@ -127,14 +127,14 @@ vips_gaussblur_class_init( VipsGaussblurClass *class ) VIPS_ARG_DOUBLE( class, "sigma", 3, _( "Sigma" ), - _( "Sigma of gaussian" ), + _( "Sigma of Gaussian" ), VIPS_ARGUMENT_REQUIRED_INPUT, G_STRUCT_OFFSET( VipsGaussblur, sigma ), 0.01, 1000, 1.5 ); VIPS_ARG_DOUBLE( class, "min_ampl", 3, _( "Minimum amplitude" ), - _( "Minimum amplitude of gaussian" ), + _( "Minimum amplitude of Gaussian" ), VIPS_ARGUMENT_OPTIONAL_INPUT, G_STRUCT_OFFSET( VipsGaussblur, min_ampl ), 0.001, 1.0, 0.2 );