Skip to content

Commit

Permalink
fix: docs typo
Browse files Browse the repository at this point in the history
Signed-off-by: Lachezar Lechev <[email protected]>
  • Loading branch information
elpiel committed Nov 22, 2023
1 parent b3c96a5 commit 8defd72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deep_links/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub struct ExternalPlayerLink {
pub file_name: Option<String>,
}

/// Using `&Option<Url>`` is not encouraged, use `.as_ref()` to get an `Option<&Url>` instead!
/// Using `&Option<Url>` is not encouraged, use `.as_ref()` to get an `Option<&Url>` instead!
impl From<(&Stream, &Option<Url>, &Settings)> for ExternalPlayerLink {
fn from((stream, streaming_server_url, settings): (&Stream, &Option<Url>, &Settings)) -> Self {
Self::from((stream, streaming_server_url.as_ref(), settings))
Expand Down

0 comments on commit 8defd72

Please sign in to comment.