summaryrefslogtreecommitdiff
path: root/lib/base64.c
diff options
context:
space:
mode:
author12932 <68835423+12932@users.noreply.github.com>2022-10-11 22:01:37 +0800
committerDaniel Stenberg <daniel@haxx.se>2022-10-12 11:32:43 +0200
commitddeec8feba84dc4162191364c1e486cb92488f10 (patch)
tree004ffabdb27bc75c152dfb6b8a26a4d82b123453 /lib/base64.c
parentaa970c4c08775afcd0c2853be89b0a6f02582d50 (diff)
downloadcurl-ddeec8feba84dc4162191364c1e486cb92488f10.tar.gz
misc: nitpick grammar in comments/docs
because the 'u' in URL is actually a consonant *sound* it is only correct to write "a URL" sorry this is a bit nitpicky :P https://english.stackexchange.com/questions/152/when-should-i-use-a-vs-an https://www.techtarget.com/whatis/feature/Which-is-correct-a-URL-or-an-URL Closes #9699
Diffstat (limited to 'lib/base64.c')
-rw-r--r--lib/base64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base64.c b/lib/base64.c
index a9142541c..52654c2bc 100644
--- a/lib/base64.c
+++ b/lib/base64.c
@@ -47,7 +47,7 @@
static const char base64[]=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
-/* The Base 64 encoding with an URL and filename safe alphabet, RFC 4648
+/* The Base 64 encoding with a URL and filename safe alphabet, RFC 4648
section 5 */
static const char base64url[]=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";