]> granicus.if.org Git - curl/commitdiff
Typo fixes.
authorBrad Hards <bradh@frogmouth.net>
Sat, 18 Dec 2010 23:22:44 +0000 (10:22 +1100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 21 Dec 2010 21:39:56 +0000 (22:39 +0100)
lib/curlx.h
lib/strtoofft.h

index 2b7fec58a024388e846461a680bbda08715050f0..a1df669023dd0eee495a8f36d44c4036e730fe5c 100644 (file)
@@ -89,7 +89,7 @@
 
 #ifdef ENABLE_CURLX_PRINTF
 /* If this define is set, we define all "standard" printf() functions to use
-   the curlx_* version instead. It makes the source code transparant and
+   the curlx_* version instead. It makes the source code transparent and
    easier to understand/patch. Undefine them first in case _MPRINTF_REPLACE
    is set. */
 # undef printf
index 8208e87fa04b23bbb33ede7688146a22f9dc3a0c..08b0e6d91e2d2bfc173f7a6ecc5163915980db01 100644 (file)
  * 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)