summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2000-07-16 18:51:00 +0000
committerRasmus Lerdorf <rasmus@php.net>2000-07-16 18:51:00 +0000
commit246999a51f75c61f321cac5db684142248853e4e (patch)
tree6b545854cb02afa1f13b62a4c6df1986033e9056 /ext
parent808f8ed3060b2985cc9c067073c63c62c4613565 (diff)
downloadphp-git-246999a51f75c61f321cac5db684142248853e4e.tar.gz
Tiny wording fix
Diffstat (limited to 'ext')
-rwxr-xr-xext/ext_skel2
-rw-r--r--ext/skeleton/skeleton.c2
-rw-r--r--ext/skeleton/skeleton.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/ext_skel b/ext/ext_skel
index bfc24ebd26..4edbd3c472 100755
--- a/ext/ext_skel
+++ b/ext/ext_skel
@@ -245,7 +245,7 @@ To use your new extension, you will have to execute the following steps:
8. $ make
Repeat steps 3-6 until you are satisfied with ext/$extname/config.m4 and
-step 6 confirms that your module is compiled in PHP. Then, start writing
+step 6 confirms that your module is compiled into PHP. Then, start writing
code and repeat the last two steps as often as necessary.
$warning
eof
diff --git a/ext/skeleton/skeleton.c b/ext/skeleton/skeleton.c
index 0b567e197b..eae1615233 100644
--- a/ext/skeleton/skeleton.c
+++ b/ext/skeleton/skeleton.c
@@ -101,7 +101,7 @@ PHP_FUNCTION(confirm_extname_compiled)
convert_to_string_ex(arg);
- len = sprintf(string, "Congratulations, you have successfully modified ext/extname/config.m4, module %s is compiled in PHP", Z_STRVAL_PP(arg));
+ len = sprintf(string, "Congratulations, you have successfully modified ext/extname/config.m4, module %s is compiled into PHP", Z_STRVAL_PP(arg));
RETVAL_STRINGL(string, len, 1);
}
/* }}} */
diff --git a/ext/skeleton/skeleton.php b/ext/skeleton/skeleton.php
index fec1a05d98..744edb00e7 100644
--- a/ext/skeleton/skeleton.php
+++ b/ext/skeleton/skeleton.php
@@ -4,7 +4,7 @@ $function = 'confirm_' . $module . '_compiled';
if (extension_loaded($module)) {
$str = $function($module);
} else {
- $str = "Module $module is not compiled in PHP";
+ $str = "Module $module is not compiled into PHP";
}
echo "$str\n";
?>