diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2000-07-16 18:51:00 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2000-07-16 18:51:00 +0000 |
commit | 246999a51f75c61f321cac5db684142248853e4e (patch) | |
tree | 6b545854cb02afa1f13b62a4c6df1986033e9056 | |
parent | 808f8ed3060b2985cc9c067073c63c62c4613565 (diff) | |
download | php-git-246999a51f75c61f321cac5db684142248853e4e.tar.gz |
Tiny wording fix
-rw-r--r-- | README.EXT_SKEL | 2 | ||||
-rwxr-xr-x | ext/ext_skel | 2 | ||||
-rw-r--r-- | ext/skeleton/skeleton.c | 2 | ||||
-rw-r--r-- | ext/skeleton/skeleton.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/README.EXT_SKEL b/README.EXT_SKEL index 9f3a2e59a4..cedda53c75 100644 --- a/README.EXT_SKEL +++ b/README.EXT_SKEL @@ -126,7 +126,7 @@ CURRENT LIMITATIONS, BUGS AND OTHER ODDITIES Don't trust too much the generated code. It tries to be useful in most of the situations you might encounter, but automatic code generating will never - beat a programmer who knows the real situation at hand. axt_skel is generally + beat a programmer who knows the real situation at hand. ext_skel is generally best suited for quickly generating a wrapper for c-library functions you might want to have available in PHP too. 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"; ?> |