Skip to content

Commit

Permalink
Tiny wording fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rlerdorf committed Jul 16, 2000
1 parent 808f8ed commit 246999a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.EXT_SKEL
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion ext/ext_skel
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ext/skeleton/skeleton.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
/* }}} */
Expand Down
2 changes: 1 addition & 1 deletion ext/skeleton/skeleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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";
?>

0 comments on commit 246999a

Please sign in to comment.