summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2023-04-03 19:33:31 -0400
committerMatthias Clasen <mclasen@redhat.com>2023-04-21 09:03:36 +0200
commita058a382d456433b5063863f8c802860ffd3a498 (patch)
tree5f929d48529589a01cf9365bc8c145c87bb7510a
parentcad7247f2d68734523a405e2bcb9b8a37368ca4e (diff)
downloadgtk+-a058a382d456433b5063863f8c802860ffd3a498.tar.gz
expander: Fix the css docs
The docs were not matching reality since the css node names were changed in 6d20fe0b. Fixes: #5723
-rw-r--r--gtk/gtkexpander.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c
index 6b233ebe59..f4e7532332 100644
--- a/gtk/gtkexpander.c
+++ b/gtk/gtkexpander.c
@@ -98,16 +98,16 @@
* # CSS nodes
*
* ```
- * expander
+ * expander-widget
* ╰── box
* ├── title
- * │ ├── arrow
+ * │ ├── expander
* │ ╰── <label widget>
* ╰── <child>
* ```
*
- * `GtkExpander` has three CSS nodes, the main node with the name expander,
- * a subnode with name title and node below it with name arrow. The arrow of an
+ * `GtkExpander` has three CSS nodes, the main node with the name expander-widget,
+ * a subnode with name title and node below it with name expander. The arrow of an
* expander that is showing its child gets the :checked pseudoclass added to it.
*
* # Accessibility