From 1e2e57836fd67511173c2ae13a80d9b9267e655d Mon Sep 17 00:00:00 2001 From: Kourosh Firoozbakht Date: Wed, 26 Jul 2023 01:42:02 +0000 Subject: [PATCH] examples: fix typo Part-of: --- examples/src/bin/encodebin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/src/bin/encodebin.rs b/examples/src/bin/encodebin.rs index 268802ca6..eda62e1d4 100644 --- a/examples/src/bin/encodebin.rs +++ b/examples/src/bin/encodebin.rs @@ -189,7 +189,7 @@ fn example_main() -> Result<(), Error> { // Request a sink pad from our encodebin, that can handle a raw videostream. // The encodebin will then automatically create an internal pipeline, that encodes - // the audio stream in the format we specified in the EncodingProfile. + // the video stream in the format we specified in the EncodingProfile. let enc_sink_pad = encodebin .request_pad_simple("video_%u") .expect("Could not get video pad from encodebin");