From ed1b7f469740c93441724ca418f9007f18004bba Mon Sep 17 00:00:00 2001 From: Jehan Date: Mon, 16 Sep 2013 00:43:44 +1200 Subject: [PATCH] app: minor typo spotted on gimp:grow operation. s/diection/direction/ --- app/operations/gimpoperationgrow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/operations/gimpoperationgrow.c b/app/operations/gimpoperationgrow.c index 5e911e8575..2aa8c866c7 100644 --- a/app/operations/gimpoperationgrow.c +++ b/app/operations/gimpoperationgrow.c @@ -96,7 +96,7 @@ gimp_operation_grow_class_init (GimpOperationGrowClass *klass) g_object_class_install_property (object_class, PROP_RADIUS_X, g_param_spec_int ("radius-x", "Radius X", - "Grow radius in X diection", + "Grow radius in X direction", 1, 2342, 1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); @@ -104,7 +104,7 @@ gimp_operation_grow_class_init (GimpOperationGrowClass *klass) g_object_class_install_property (object_class, PROP_RADIUS_Y, g_param_spec_int ("radius-y", "Radius Y", - "Grow radius in Y diection", + "Grow radius in Y direction", 1, 2342, 1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));