소스 검색

chore: fix some typos in comments (#1272)

chore: fix typo in comment

Signed-off-by: camcui <cuishua@sina.cn>
camcui 1 년 전
부모
커밋
95e7584c9a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      httprange/httprange.go

+ 1 - 1
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")
 		}