comparison src/core/ngx_string.c @ 4133:59b99f217c6d

Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Sep 2011 14:48:29 +0000
parents 7224d008faaf
children 61e4af19df9f
comparison
equal deleted inserted replaced
4132:cdc22824e22a 4133:59b99f217c6d
379 scale *= 10.0; 379 scale *= 10.0;
380 } 380 }
381 381
382 /* 382 /*
383 * (int64_t) cast is required for msvc6: 383 * (int64_t) cast is required for msvc6:
384 * it can not convert uint64_t to double 384 * it cannot convert uint64_t to double
385 */ 385 */
386 ui64 = (uint64_t) ((f - (int64_t) ui64) * scale + 0.5); 386 ui64 = (uint64_t) ((f - (int64_t) ui64) * scale + 0.5);
387 387
388 buf = ngx_sprintf_num(buf, last, ui64, '0', 0, frac_width); 388 buf = ngx_sprintf_num(buf, last, ui64, '0', 0, frac_width);
389 } 389 }