From bb152538c2c069843533f21f1dac73ebb29181da Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Tue, 17 Sep 2024 11:19:39 +0200 Subject: [PATCH] fix doc string --- crates/store/re_video/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/store/re_video/src/lib.rs b/crates/store/re_video/src/lib.rs index 866fbc39ddb1..62204081dedc 100644 --- a/crates/store/re_video/src/lib.rs +++ b/crates/store/re_video/src/lib.rs @@ -1,6 +1,7 @@ //! Video decoding library. //! -//! The entry point is [`load_mp4`], which produces an instance of [`VideoData`]. +//! The entry point is [`VideoData::load_from_bytes`] +//! which produces an instance of [`VideoData`] from any supported video container. mod mp4;