docs: plugin-dev: basics-boilerplate: fix typo in variable name
authorwngecn <wnge@google.com>
Wed, 29 Sep 2021 05:46:12 +0000 (05:46 +0000)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Tue, 9 Nov 2021 17:46:31 +0000 (17:46 +0000)
Closes https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/166/

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1324>

subprojects/gst-docs/markdown/plugin-development/basics/boiler.md

index bd31b4c..706eb1c 100644 (file)
@@ -216,7 +216,7 @@ gst_my_filter_class_init (GstMyFilterClass * klass)
   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
 
 [..]
-  gst_element_class_set_static_metadata (element_klass,
+  gst_element_class_set_static_metadata (element_class,
     "An example plugin",
     "Example/FirstExample",
     "Shows the basic structure of a plugin",