net: hlssink3: Fix a comment typo

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2329>
This commit is contained in:
Arun Raghavan 2025-06-30 10:01:04 -04:00
parent 5d4b23eb2c
commit a5f0b5947b

View file

@ -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())
{