From 95e7584c9a474eef0689c36fbd06e7485909ecc2 Mon Sep 17 00:00:00 2001 From: camcui <166618273+camcui@users.noreply.github.com> Date: Sat, 13 Apr 2024 22:42:27 +0800 Subject: [PATCH] chore: fix some typos in comments (#1272) chore: fix typo in comment Signed-off-by: camcui --- httprange/httprange.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httprange/httprange.go b/httprange/httprange.go index 6bb0da75..744c7fde 100644 --- a/httprange/httprange.go +++ b/httprange/httprange.go @@ -32,7 +32,7 @@ func Parse(s string) (int64, int64, error) { start, end := textproto.TrimString(ra[:i]), textproto.TrimString(ra[i+1:]) if start == "" { - // Don't support ranges without start since it looks like FFmpeg doen't use ones + // Don't support ranges without start since it looks like FFmpeg doesn't use ones return 0, 0, errors.New("invalid range") }