]> granicus.if.org Git - php/commitdiff
Tiny wording fix
authorRasmus Lerdorf <rasmus@php.net>
Sun, 16 Jul 2000 18:51:00 +0000 (18:51 +0000)
committerRasmus Lerdorf <rasmus@php.net>
Sun, 16 Jul 2000 18:51:00 +0000 (18:51 +0000)
README.EXT_SKEL
ext/ext_skel
ext/skeleton/skeleton.c
ext/skeleton/skeleton.php

index 9f3a2e59a424542713b27789b11217cdaa383e7a..cedda53c75946a2ae5ec5ec85a02f41b91cfd27d 100644 (file)
@@ -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.
 
index bfc24ebd26ee7ce33c011c810a9681a850d3c2e3..4edbd3c472e8928ce764701cbd31bf6ef98cae1c 100755 (executable)
@@ -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
index 0b567e197bb0d7a6ce602a5e55c842311c6f08ac..eae16152337caa029aec936dc6c9e1889a315f37 100644 (file)
@@ -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);
 }
 /* }}} */
index fec1a05d98f21099b49a335b8c868758fcfed43d..744edb00e7ce36498181bebd7afedcba678331ed 100644 (file)
@@ -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";
 ?>