From dc82959ac157e5d4d977ca416a51edde08867144 Mon Sep 17 00:00:00 2001 From: Arjan Molenaar Date: Sat, 20 May 2023 14:11:58 +0200 Subject: [PATCH] Fix typo in CSS docs --- docs/reference/gtk/css-overview.md | 2 +- gtk/gtkexpander.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/gtk/css-overview.md b/docs/reference/gtk/css-overview.md index a9518dd428..197f64cf34 100644 --- a/docs/reference/gtk/css-overview.md +++ b/docs/reference/gtk/css-overview.md @@ -68,7 +68,7 @@ in a selector, widget names must be prefixed with a # character. | E:focus-within | [CSS Selector Level 4](https://drafts.csswg.org/selectors/#focus-within-pseudo) | Set on all ancestors of the focus widget, unlike CSS | | E:focus-visible | [CSS Selector Level 4](https://drafts.csswg.org/selectors/#focus-within-pseudo) | Set on focus widget and all ancestors, unlike CSS | | E:disabled | [CSS Selector Level 3](https://www.w3.org/TR/css3-selectors/#UIstates) | Corresponds to GTK_STATE_FLAG_INSENSITIVE | -| E:disabled | [CSS Selector Level 3](https://www.w3.org/TR/css3-selectors/#UIstates) | Corresponds to GTK_STATE_FLAG_CHECKED | +| E:checked | [CSS Selector Level 3](https://www.w3.org/TR/css3-selectors/#UIstates) | Corresponds to GTK_STATE_FLAG_CHECKED | | E:indeterminate | [CSS Selector Level 3](https://www.w3.org/TR/css3-selectors/#indeterminate) | Corresponds to GTK_STATE_FLAG_INCONSISTENT | | E:backdrop, E:selected | | Corresponds to GTK_STATE_FLAG_BACKDROP, GTK_STATE_FLAG_SELECTED | | E:not(selector) | [CSS Selector Level 3](https://www.w3.org/TR/css3-selectors/#negation) | | diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c index f4e7532332..99893d8cbe 100644 --- a/gtk/gtkexpander.c +++ b/gtk/gtkexpander.c @@ -40,7 +40,7 @@ * expanded widget yourself, such as when you want to actually create * the widget at expansion time. In this case, create a `GtkExpander` * but do not add a child to it. The expander widget has an - * [property@Gtk.Expander:expanded[ property which can be used to + * [property@Gtk.Expander:expanded] property which can be used to * monitor its expansion state. You should watch this property with * a signal connection as follows: * -- 2.30.2