diff --git a/gtk/gtkaccelgroup.c b/gtk/gtkaccelgroup.c index fed9fe513e..3f0724d74f 100644 --- a/gtk/gtkaccelgroup.c +++ b/gtk/gtkaccelgroup.c @@ -484,15 +484,26 @@ out: * * Parses a string representing an accelerator. * - * The format looks like “a” or “F1”. + * The format looks like “`a`” or “`F1`”. * * The parser is fairly liberal and allows lower or upper case, and also - * abbreviations such as “” and “”. Key names are parsed using - * [func@Gdk.keyval_from_name]. For character keys the name is not the symbol, - * but the lowercase name, e.g. one would use “minus” instead of - * “-”. + * abbreviations such as “``” and “``”. * - * If the parse fails, @accelerator_key and @accelerator_mods will + * Key names are parsed using [func@Gdk.keyval_from_name]. For character keys + * the name is not the symbol, but the lowercase name, e.g. one would use + * “`minus`” instead of “`-`”. + * + * Modifiers are enclosed in angular brackets `<>`, and match the + * [enum@Gdk.ModifierType] mask: + * + * - `` for `GDK_SHIFT_MASK` + * - `` for `GDK_CONTROL_MASK` + * - `` for `GDK_ALT_MASK` + * - `` for `GDK_META_MASK` + * - `` for `GDK_SUPER_MASK` + * - `` for `GDK_HYPER_MASK` + * + * If the parse operation fails, @accelerator_key and @accelerator_mods will * be set to 0 (zero). */ gboolean