From a5f0b5947ba312632e2c9c6eed38214902e13084 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Mon, 30 Jun 2025 10:01:04 -0400 Subject: [PATCH] net: hlssink3: Fix a comment typo Part-of: --- net/hlssink3/src/hlssink3/imp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/hlssink3/src/hlssink3/imp.rs b/net/hlssink3/src/hlssink3/imp.rs index 552cd4bf9..cf61ee95b 100644 --- a/net/hlssink3/src/hlssink3/imp.rs +++ b/net/hlssink3/src/hlssink3/imp.rs @@ -601,7 +601,7 @@ impl HlsSink3 { // Try to get the location of the fragment we just closed, if splitmuxsink gave us the // fragment id (1.26+) .and_then(|fragment_id| base_imp.get_location(fragment_id)) - // Else fallback to the last fragment location we generated, which is techincally wrong + // Else fallback to the last fragment location we generated, which is technically wrong // (because this is the current fragment in progress, not the last fragment closed) .or_else(|| state.current_segment_location.take()) {