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:
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!(