Skip to content

Commit 04145dc

Browse files
vlajossmalyshev
authored andcommitted
typo fixes (argument)
1 parent ed2e84e commit 04145dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+56
-56
lines changed

Zend/zend_API.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;
461461
*/
462462
ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC);
463463

464-
/** Clear argumens connected with zend_fcall_info *fci
464+
/** Clear arguments connected with zend_fcall_info *fci
465465
* If free_mem is not zero then the params array gets free'd as well
466466
*/
467467
ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem);
@@ -499,7 +499,7 @@ ZEND_API int zend_fcall_info_argv(zend_fcall_info *fci TSRMLS_DC, int argc, va_l
499499
ZEND_API int zend_fcall_info_argn(zend_fcall_info *fci TSRMLS_DC, int argc, ...);
500500

501501
/** Call a function using information created by zend_fcall_info_init()/args().
502-
* If args is given then those replace the arguement info in fci is temporarily.
502+
* If args is given then those replace the argument info in fci is temporarily.
503503
*/
504504
ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval, zval *args TSRMLS_DC);
505505

ext/intl/tests/badargs.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Check that bad argumens return the same
2+
Check that bad arguments return the same
33
--SKIPIF--
44
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
55
--FILE--

ext/pcre/pcrelib/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ some of the new functionality in Perl 5.005.
591591
Another (I hope this is the last!) change has been made to the API for the
592592
pcre_compile() function. An additional argument has been added to make it
593593
possible to pass over a pointer to character tables built in the current
594-
locale by pcre_maketables(). To use the default tables, this new arguement
594+
locale by pcre_maketables(). To use the default tables, this new argument
595595
should be passed as NULL.
596596

597597
IMPORTANT FOR THOSE UPGRADING FROM VERSION 2.05

ext/sqlite3/libsqlite/sqlite3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93544,7 +93544,7 @@ static u8 minMaxQuery(Select *p){
9354493544

9354593545
/*
9354693546
** The select statement passed as the first argument is an aggregate query.
93547-
** The second argment is the associated aggregate-info object. This
93547+
** The second argument is the associated aggregate-info object. This
9354893548
** function tests if the SELECT is of the form:
9354993549
**
9355093550
** SELECT count(*) FROM <tbl>

ext/standard/tests/array/009.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var_dump( current($temp_array, $temp_array) );
9494
var_dump( reset($temp_array, $temp_array) );
9595
var_dump( next($temp_array, $temp_array) );
9696

97-
// invalid args type, valid arguement: array
97+
// invalid args type, valid argument: array
9898
$int_var = 1;
9999
$float_var = 1.5;
100100
$string = "string";

ext/standard/tests/array/array_fill_keys_error.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var_dump( array_fill_keys($keys, $val, $extra_arg) );
2020
echo "\n-- Testing array_fill_keys() function with less than expected no. of arguments --\n";
2121
var_dump( array_fill_keys($keys) );
2222

23-
echo "\n-- Testing array_fill_keys() function with no argumets --\n";
23+
echo "\n-- Testing array_fill_keys() function with no arguments --\n";
2424
var_dump( array_fill_keys() );
2525

2626
echo "Done";
@@ -38,7 +38,7 @@ NULL
3838
Warning: array_fill_keys() expects exactly 2 parameters, 1 given in %sarray_fill_keys_error.php on line %d
3939
NULL
4040

41-
-- Testing array_fill_keys() function with no argumets --
41+
-- Testing array_fill_keys() function with no arguments --
4242

4343
Warning: array_fill_keys() expects exactly 2 parameters, 0 given in %sarray_fill_keys_error.php on line %d
4444
NULL

ext/standard/tests/array/array_merge.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ echo "\n*** Testing array_merge() with typecasting non-array to array ***\n";
7979
var_dump(array_merge($begin_array[4], (array)"type1", (array)10, (array)12.34));
8080

8181
echo "\n*** Testing error conditions ***";
82-
/* Invalid argumens */
82+
/* Invalid arguments */
8383
var_dump(array_merge());
8484
var_dump(array_merge(100, 200));
8585
var_dump(array_merge($begin_array[0], $begin_array[1], 100));

ext/standard/tests/array/array_walk_basic2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function test_alter(&$item, $key, $prefix)
2525
// with proper type
2626
var_dump($item); // value
2727
var_dump($key); // key
28-
var_dump($prefix); // additional agument passed to callback function
28+
var_dump($prefix); // additional argument passed to callback function
2929
echo "\n"; // new line to separate the output between each element
3030
}
3131

ext/standard/tests/array/array_walk_recursive_basic2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function test_alter(&$item, $key, $prefix)
2525
// with proper type
2626
var_dump($item); // value
2727
var_dump($key); // key
28-
var_dump($prefix); // additional agument passed to callback function
28+
var_dump($prefix); // additional argument passed to callback function
2929
echo "\n"; // new line to separate the output between each element
3030
}
3131

ext/standard/tests/class_object/class_exists_variation_001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test class_exists() function : usage variations - unexpected types for agument 1
2+
Test class_exists() function : usage variations - unexpected types for argument 1
33
--FILE--
44
<?php
55
/* Prototype : proto bool class_exists(string classname [, bool autoload])

ext/standard/tests/class_object/class_exists_variation_002.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test class_exists() function : usage variations - unexpected types for agument 2
2+
Test class_exists() function : usage variations - unexpected types for argument 2
33
--FILE--
44
<?php
55
/* Prototype : proto bool class_exists(string classname [, bool autoload])

ext/standard/tests/class_object/trait_exists_variation_001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test trait_exists() function : usage variations - unexpected types for agument 1
2+
Test trait_exists() function : usage variations - unexpected types for argument 1
33
--FILE--
44
<?php
55
/* Prototype : proto bool trait_exists(string traitname [, bool autoload])

ext/standard/tests/class_object/trait_exists_variation_002.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test trait_exists() function : usage variations - unexpected types for agument 2
2+
Test trait_exists() function : usage variations - unexpected types for argument 2
33
--FILE--
44
<?php
55
/* Prototype : proto bool trait_exists(string traitname [, bool autoload])

ext/standard/tests/file/005_error.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Test fileatime(), filemtime(), filectime() & touch() functions : error condition
2323
echo "*** Testing error conditions ***\n";
2424

2525
echo "\n-- Testing with Non-existing files --";
26-
/* Both invalid argumetns */
26+
/* Both invalid arguments */
2727
var_dump( fileatime("/no/such/file/or/dir") );
2828
var_dump( filemtime("/no/such/file/or/dir") );
2929
var_dump( filectime("/no/such/file/or/dir") );

ext/standard/tests/file/fileinode_error.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ var_dump( fileinode("/no/such/file/dir") );
1616
var_dump( fileinode("string") );
1717
var_dump( fileinode(100) );
1818

19-
/* No.of argumetns less than expected */
19+
/* No.of arguments less than expected */
2020
var_dump( fileinode() );
2121

22-
/* No.of argumetns greater than expected */
22+
/* No.of arguments greater than expected */
2323
var_dump( fileinode(__FILE__, "string") );
2424

2525
echo "\n*** Done ***";

ext/standard/tests/file/fstat_variation1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with array values.
2+
Test function fstat() by substituting argument 1 with array values.
33
--FILE--
44
<?php
55
$index_array = array(1, 2, 3);

ext/standard/tests/file/fstat_variation2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with boolean values.
2+
Test function fstat() by substituting argument 1 with boolean values.
33
--FILE--
44
<?php
55
$variation_array = array(

ext/standard/tests/file/fstat_variation3.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with emptyUnsetUndefNull values.
2+
Test function fstat() by substituting argument 1 with emptyUnsetUndefNull values.
33
--FILE--
44
<?php
55
$unset_var = 10;

ext/standard/tests/file/fstat_variation4.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with float values.
2+
Test function fstat() by substituting argument 1 with float values.
33
--FILE--
44
<?php
55
$variation_array = array(

ext/standard/tests/file/fstat_variation5.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with int values.
2+
Test function fstat() by substituting argument 1 with int values.
33
--FILE--
44
<?php
55
$variation_array = array (

ext/standard/tests/file/fstat_variation6.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with object values.
2+
Test function fstat() by substituting argument 1 with object values.
33
--FILE--
44
<?php
55

ext/standard/tests/file/fstat_variation7.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function fstat() by substituting agument 1 with string values.
2+
Test function fstat() by substituting argument 1 with string values.
33
--FILE--
44
<?php
55
$heredoc = <<<EOT

ext/standard/tests/strings/chunk_split_error.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Test chunk_split() function : error conditions
1010

1111
/*
1212
* Testing error conditions of chunk_split() with zero arguments
13-
* and for more than expected number of argments
13+
* and for more than expected number of arguments
1414
*/
1515

1616
echo "*** Testing chunk_split() : error conditions ***\n";

ext/zlib/tests/gzfile_variation1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with array values.
2+
Test function gzfile() by substituting argument 1 with array values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation10.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with emptyUnsetUndefNull values.
2+
Test function gzfile() by substituting argument 2 with emptyUnsetUndefNull values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation11.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with float values.
2+
Test function gzfile() by substituting argument 2 with float values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation12.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with int values.
2+
Test function gzfile() by substituting argument 2 with int values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation13.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with object values.
2+
Test function gzfile() by substituting argument 2 with object values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation14.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with string values.
2+
Test function gzfile() by substituting argument 2 with string values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with boolean values.
2+
Test function gzfile() by substituting argument 1 with boolean values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation3.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with emptyUnsetUndefNull values.
2+
Test function gzfile() by substituting argument 1 with emptyUnsetUndefNull values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation4.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with float values.
2+
Test function gzfile() by substituting argument 1 with float values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation5.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with int values.
2+
Test function gzfile() by substituting argument 1 with int values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation6.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with object values.
2+
Test function gzfile() by substituting argument 1 with object values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation7.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 1 with string values.
2+
Test function gzfile() by substituting argument 1 with string values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation8.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with array values.
2+
Test function gzfile() by substituting argument 2 with array values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/gzfile_variation9.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function gzfile() by substituting agument 2 with boolean values.
2+
Test function gzfile() by substituting argument 2 with boolean values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with array values.
2+
Test function readgzfile() by substituting argument 1 with array values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation10.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 2 with emptyUnsetUndefNull values.
2+
Test function readgzfile() by substituting argument 2 with emptyUnsetUndefNull values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation11.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 2 with float values.
2+
Test function readgzfile() by substituting argument 2 with float values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation12.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 2 with int values.
2+
Test function readgzfile() by substituting argument 2 with int values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation13.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 2 with object values.
2+
Test function readgzfile() by substituting argument 2 with object values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation14.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 2 with string values.
2+
Test function readgzfile() by substituting argument 2 with string values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with boolean values.
2+
Test function readgzfile() by substituting argument 1 with boolean values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation3.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with emptyUnsetUndefNull values.
2+
Test function readgzfile() by substituting argument 1 with emptyUnsetUndefNull values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation4.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with float values.
2+
Test function readgzfile() by substituting argument 1 with float values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation5.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with int values.
2+
Test function readgzfile() by substituting argument 1 with int values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation6.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with object values.
2+
Test function readgzfile() by substituting argument 1 with object values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation7.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 1 with string values.
2+
Test function readgzfile() by substituting argument 1 with string values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

ext/zlib/tests/readgzfile_variation8.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test function readgzfile() by substituting agument 2 with array values.
2+
Test function readgzfile() by substituting argument 2 with array values.
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');

0 commit comments

Comments
 (0)