summaryrefslogtreecommitdiff
path: root/lib/strtoofft.h
diff options
context:
space:
mode:
authorBrad Hards <bradh@frogmouth.net>2010-12-19 10:22:44 +1100
committerDaniel Stenberg <daniel@haxx.se>2010-12-21 22:39:56 +0100
commitf37d681166053a25af9e1427ffe87c5ed67f0ab3 (patch)
treed9cbb3f5a64aa27cdc5af00b2350cd101bd9281b /lib/strtoofft.h
parent30bd7427eaeaaa771cb94cb130df72389743acb2 (diff)
downloadcurl-f37d681166053a25af9e1427ffe87c5ed67f0ab3.tar.gz
Typo fixes.
Diffstat (limited to 'lib/strtoofft.h')
-rw-r--r--lib/strtoofft.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/strtoofft.h b/lib/strtoofft.h
index 8208e87fa..08b0e6d91 100644
--- a/lib/strtoofft.h
+++ b/lib/strtoofft.h
@@ -29,15 +29,15 @@
* to implement string conversion to our curl_off_t integral data type.
*
* Notice that curl_off_t might be 64 or 32 bit wide, and that it might use
- * an undelying data type which might be 'long', 'int64_t', 'long long' or
+ * an underlying data type which might be 'long', 'int64_t', 'long long' or
* '__int64' and more remotely other data types.
*
* On systems where the size of curl_off_t is greater than the size of 'long'
- * the conversion funtion to use is strtoll() if it is available, otherwise,
+ * the conversion function to use is strtoll() if it is available, otherwise,
* we emulate its functionality with our own clone.
*
* On systems where the size of curl_off_t is smaller or equal than the size
- * of 'long' the conversion funtion to use is strtol().
+ * of 'long' the conversion function to use is strtol().
*/
#if (CURL_SIZEOF_CURL_OFF_T > CURL_SIZEOF_LONG)