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:
authorMichael Oultram <michael.oultram@pexip.com>2022-10-19 13:34:21 +0300
committerMichael Oultram <michael.oultram@pexip.com>2022-10-19 13:38:36 +0300
commite0437ae8f63679d32986517c012c0ec2e26a6d51 (patch)
tree51a14dc4829735bf4d45a49b2461d32348d9c18d /version-helper
parent59daaa62aa4b7f9de6a50e070a63e778ed344cb6 (diff)
docs: fix references to renamed function gst_plugin_version_helper::get_info()
Diffstat (limited to 'version-helper')
-rw-r--r--version-helper/README.md2
-rw-r--r--version-helper/src/lib.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/version-helper/README.md b/version-helper/README.md
index ad69ae5b1..0b84ce151 100644
--- a/version-helper/README.md
+++ b/version-helper/README.md
@@ -11,7 +11,7 @@ plugin:
gst_plugin_version_helper::info();
```
-Inside `lib.rs` of the plugin, the information provided by `get_info` are usable as follows:
+Inside `lib.rs` of the plugin, the information provided by `info` are usable as follows:
```rust,ignore
gst::plugin_define!(
diff --git a/version-helper/src/lib.rs b/version-helper/src/lib.rs
index 6e2d10cb5..ccd90f633 100644
--- a/version-helper/src/lib.rs
+++ b/version-helper/src/lib.rs
@@ -7,7 +7,7 @@
//! Extracts release for [GStreamer](https://gstreamer.freedesktop.org) plugin metadata
//!
-//! See [`get_info`](fn.get_info.html) for details.
+//! See [`info`](fn.info.html) for details.
//!
//! This function is supposed to be used as follows in the `build.rs` of a crate that implements a
//! plugin:
@@ -16,7 +16,7 @@
//! gst_plugin_version_helper::info();
//! ```
//!
-//! Inside `lib.rs` of the plugin, the information provided by `get_info` are usable as follows:
+//! Inside `lib.rs` of the plugin, the information provided by `info` are usable as follows:
//!
//! ```rust,ignore
//! gst::plugin_define!(