From 4aa734919f481d12f3f321809a30c6645e185f08 Mon Sep 17 00:00:00 2001 From: Ruben Gonzalez Date: Wed, 14 Jul 2021 17:00:56 +0200 Subject: [PATCH] application-development: Fix " Non-instantiatable classed types" link Part-of: --- markdown/application-development/advanced/interfaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/application-development/advanced/interfaces.md b/markdown/application-development/advanced/interfaces.md index f81ffcd5b9..b639801cc2 100644 --- a/markdown/application-development/advanced/interfaces.md +++ b/markdown/application-development/advanced/interfaces.md @@ -9,7 +9,7 @@ properties as a simple way for applications and elements to interact. This method suffices for simple getters and setters, but fails for anything more complicated. For more complex use cases, GStreamer uses interfaces based on the `GObject` -[`GTypeInterface`](http://library.gnome.org/devel/gobject/stable/gtype-non-instantiable-classed.html) +[`GTypeInterface`](http://library.gnome.org/devel/gobject/stable/gtype-non-instantiatable-classed.html) type. This text is meant to be introductory and does not include source code examples.