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
committerSebastian Dröge <sebastian@centricular.com>2021-08-05 15:57:56 +0300
commit0556d1159fe886d832c8b73640a22abfae67779f (patch)
tree934ee0b65a68bb41f1e84bb551dd5df8be15936a
parent3ccb28ba233abd2af9f28d70e74a7369e9274e8c (diff)
Fix typo in tutorial/src/lib: metdata -> metadata
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/537>
-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