docs: Fix typo in Gdk.ContentProvider.new_union

It's GDK_TYPE_TEXTURE, not G_TYPE_TEXTURE.

Fixes: #7106
This commit is contained in:
Emmanuele Bassi
2024-10-22 14:04:01 +01:00
committed by Matthias Clasen
parent d56d1ca4f3
commit 0458e74fc6

View File

@@ -409,7 +409,7 @@ gdk_content_provider_union_init (GdkContentProviderUnion *self)
* ```c
* gdk_content_provider_new_union ((GdkContentProvider *[2]) {
* gdk_content_provider_new_typed (G_TYPE_FILE, file),
* gdk_content_provider_new_typed (G_TYPE_TEXTURE, texture)
* gdk_content_provider_new_typed (GDK_TYPE_TEXTURE, texture)
* }, 2);
* ```
*