summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug77552.phpt
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-01-16 09:46:47 +0100
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-01-16 09:46:47 +0100
commit0b4778c377a5753a0deb9cfc697d4f62acf93a29 (patch)
tree1513cbdabd00e0c43ed9750107787791060a8398 /ext/standard/tests/file/bug77552.phpt
parent9d7e03c325473024e54c864f0379efc1bbf03e72 (diff)
downloadphp-git-0b4778c377a5753a0deb9cfc697d4f62acf93a29.tar.gz
Fix #78880: Another bunch of spelling errors
Diffstat (limited to 'ext/standard/tests/file/bug77552.phpt')
-rw-r--r--ext/standard/tests/file/bug77552.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/file/bug77552.phpt b/ext/standard/tests/file/bug77552.phpt
index 9404b8e09f..8e3a835537 100644
--- a/ext/standard/tests/file/bug77552.phpt
+++ b/ext/standard/tests/file/bug77552.phpt
@@ -1,5 +1,5 @@
--TEST--
-Bug #77552 Unintialized php_stream_statbuf in stat functions
+Bug #77552 Uninitialized php_stream_statbuf in stat functions
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN') {
@@ -15,7 +15,7 @@ $target = $tmpDir.'/folder/target';
mkdir($target, 0777, true);
$junction = $tmpDir.'/junction';
-$cmd = sprintf('mklink /J "%s" "%s"', $junction, $target);
+$cmd = sprintf('mklink /J "%s" "%s"', $junction, $target);
exec($cmd);
$stat = lstat($junction);