summaryrefslogtreecommitdiff
path: root/ext/standard/rand.c
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-11-19 19:59:31 +0000
committerVeres Lajos <vlajos@gmail.com>2014-11-19 20:23:00 +0000
commit4b9535341addcdeaf44002e323733864325b30ab (patch)
tree4c5819be9e7939c00b4d60261751b78c6f1d82cc /ext/standard/rand.c
parentf7674519804dc7000a56ef9fe12c49461ff0333a (diff)
downloadphp-git-4b9535341addcdeaf44002e323733864325b30ab.tar.gz
typo fixes - https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'ext/standard/rand.c')
-rw-r--r--ext/standard/rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/rand.c b/ext/standard/rand.c
index 55388e3c13..47b55af466 100644
--- a/ext/standard/rand.c
+++ b/ext/standard/rand.c
@@ -271,7 +271,7 @@ PHP_FUNCTION(mt_srand)
* We have a problem here in that only n==M will get mapped to b which
# means the chances of getting b is much much less than getting any of
# the other values in the range. We can fix this by increasing our range
- # artifically and using:
+ # artificially and using:
#
# n' = a + n(b-a+1)/M
*