From e03c134649fb7d85e78bb400f3e4ef2c3d6fcf57 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 31 Jul 2022 08:33:06 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - README.md Fixes: - Should read `interpreted` rather than `interpretted`. - Should read `characters` rather than `charactes`. Signed-off-by: Tim Gates --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c78cb32..2aa8891 100644 --- a/README.md +++ b/README.md @@ -380,7 +380,7 @@ multivalue dictionary. ``` __params__ is one dimensional. If a list of values is provided as a query value, -that list is interpretted as multiple values. +that list is interpreted as multiple values. ```python >>> f = furl() @@ -422,7 +422,7 @@ parameter value. __encode(delimiter='&', quote_plus=True, dont_quote='')__ can be used to encode query strings with delimiters like `;`, encode spaces as `+` instead of `%20` (i.e. application/x-www-form-urlencoded encoded), or avoid percent-encoding -valid query charactes entirely (valid query characters are +valid query characters entirely (valid query characters are `/?:@-._~!$&'()*+,;=`). ```python