From 8c4245da2fda8577ce927e953be28e02d00bf170 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Fri, 14 Jul 2023 14:22:57 +0100 Subject: [PATCH] EventControllerKey: Remove redundant/unliked "See" Saying "See [Thing]" is not very helpful without it being a link to Thing, and we already get that for free as the "Type:" of the param. --- gtk/gtkeventcontrollerkey.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk/gtkeventcontrollerkey.c b/gtk/gtkeventcontrollerkey.c index 8279e42b4f..0ca3ac29bc 100644 --- a/gtk/gtkeventcontrollerkey.c +++ b/gtk/gtkeventcontrollerkey.c @@ -193,7 +193,7 @@ gtk_event_controller_key_class_init (GtkEventControllerKeyClass *klass) * @controller: the object which received the signal. * @keyval: the pressed key. * @keycode: the raw code of the pressed key. - * @state: the bitmask, representing the state of modifier keys and pointer buttons. See `GdkModifierType`. + * @state: the bitmask, representing the state of modifier keys and pointer buttons. * * Emitted whenever a key is pressed. * @@ -215,7 +215,7 @@ gtk_event_controller_key_class_init (GtkEventControllerKeyClass *klass) * @controller: the object which received the signal. * @keyval: the released key. * @keycode: the raw code of the released key. - * @state: the bitmask, representing the state of modifier keys and pointer buttons. See `GdkModifierType`. + * @state: the bitmask, representing the state of modifier keys and pointer buttons. * * Emitted whenever a key is released. */ @@ -234,7 +234,7 @@ gtk_event_controller_key_class_init (GtkEventControllerKeyClass *klass) * GtkEventControllerKey::modifiers: * @controller: the object which received the signal. * @state: the bitmask, representing the new state of modifier keys and - * pointer buttons. See `GdkModifierType`. + * pointer buttons. * * Emitted whenever the state of modifier keys and pointer buttons change. */ -- 2.30.2