From bc1b889cbe0f812dc58963d52c803abcc4df3317 Mon Sep 17 00:00:00 2001 From: Raphael Krupinski Date: Sun, 25 Aug 2024 16:52:49 +0200 Subject: [PATCH] chore: fix typo --- mimeparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimeparse.py b/mimeparse.py index e1c29de..afe88e3 100644 --- a/mimeparse.py +++ b/mimeparse.py @@ -177,7 +177,7 @@ def quality(mime_type: str, ranges: str) -> float: Returns the quality 'q' of a mime-type when compared against the media-ranges in ranges. For example: - >>> quality('text/html','text/*;q=0.3, text/html;q=0.7, + >>> quality('text/html','text/*;q=0.3, text/html;q=0.7', text/html;level=1, text/html;level=2;q=0.4, */*;q=0.5') 0.7