diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2018-09-09 21:29:39 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-10 08:32:07 +0200 |
commit | 1870fd2832d82781abc4443ffd344925f161bc4a (patch) | |
tree | 0cea4b952bf13991d30362bc5d3706e877327871 /lib/urlapi.c | |
parent | 6e054623b462494c26bbaf46da7ba4b5f40ff285 (diff) | |
download | curl-1870fd2832d82781abc4443ffd344925f161bc4a.tar.gz |
misc: fix typos in comments
Closes #2963
Diffstat (limited to 'lib/urlapi.c')
-rw-r--r-- | lib/urlapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urlapi.c b/lib/urlapi.c index 3183598e2..0ac550741 100644 --- a/lib/urlapi.c +++ b/lib/urlapi.c @@ -628,7 +628,7 @@ static CURLUcode seturl(const char *url, CURLU *u, unsigned int flags) /* handle the file: scheme */ if(url_has_scheme && strcasecompare(schemebuf, "file")) { - /* path has been allocated large anough to hold this */ + /* path has been allocated large enough to hold this */ strcpy(path, &url[5]); hostname = NULL; /* no host for file: URLs */ |