Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Seitz <sseitz@nvidia.com>2021-07-30 19:46:23 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-07-30 19:59:41 +0300
commit76198f43951a20faf415769ebe9ce88aaa967b3f (patch)
tree69aa42c73787c6fe7844575347a365efe75c8c7d /tutorial/src
parent052365ba1ade85dd10490cb156741226c66e6de5 (diff)
Fix typo in tutorial/src/lib: metdata -> metadata
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/537>
Diffstat (limited to 'tutorial/src')
-rw-r--r--tutorial/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/src/lib.rs b/tutorial/src/lib.rs
index bb3ff865e..83fb8eac0 100644
--- a/tutorial/src/lib.rs
+++ b/tutorial/src/lib.rs
@@ -23,7 +23,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
Ok(())
}
-// Static plugin metdata that is directly stored in the plugin shared object and read by GStreamer
+// Static plugin metadata that is directly stored in the plugin shared object and read by GStreamer
// upon loading.
// Plugin name, plugin description, plugin entry point function, version number of this plugin,
// license of the plugin, source package name, binary package name, origin where it comes from