Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Docs changed.
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 2824330..5965b6a 100644
--- a/Doc/faq/library.rst
+++ b/Doc/faq/library.rst
@@ -666,7 +666,7 @@
'/cgi-bin/some-cgi-script', data=qs)
msg, hdrs = req.read(), req.info()
-Note that in general for URL-encoded POST operations, query strings must be
+Note that in general for a percent-encoded POST operations, query strings must be
quoted by using :func:`urllib.parse.urlencode`. For example to send name="Guy Steele,
Jr."::