From d400b4587a914c451614feb1ce986aadcb60cc87 Mon Sep 17 00:00:00 2001 From: Philipp Kaeser Date: Sun, 4 Aug 2024 11:57:27 +0200 Subject: [PATCH] wlr_scene: Add 'struct' to comment in wlr_scene_create() to permit auto-linkify. --- include/wlr/types/wlr_scene.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index a09ae8f1..d1fbca7d 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -307,8 +307,8 @@ struct wlr_scene_node *wlr_scene_node_at(struct wlr_scene_node *node, /** * Create a new scene-graph. * - * The graph is also a wlr_scene_node. Associated resources can be destroyed - * through wlr_scene_node_destroy(). + * The graph is also a struct wlr_scene_node. Associated resources can be + * destroyed through wlr_scene_node_destroy(). */ struct wlr_scene *wlr_scene_create(void);