From: Arjan Molenaar Date: Sat, 20 May 2023 12:11:58 +0000 (+0200) Subject: Fix typo in CSS docs X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~3^2~1^2~26 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=dc82959ac157e5d4d977ca416a51edde08867144;p=gtk4.git Fix typo in CSS docs --- 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: *