X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=scripts%2Fconsole.php;h=2a000d39b077071965176b8f68fd53c2f044124f;hb=b10f362ede8c39746c168363bf4fa6481995592b;hp=f1b089a7cd1c613aa6de796b03df126e523df2bb;hpb=00ec0293522f4c00b3ef169aaf8c3da2055cab6e;p=quix0rs-gnu-social.git diff --git a/scripts/console.php b/scripts/console.php index f1b089a7cd..2a000d39b0 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -60,9 +60,9 @@ function read_input_line($prompt) } /** - * On Unix-like systems where PHP readline extension isn't present, + * On Unix-like systems where PHP readline extension is not present, * -cough- Mac OS X -cough- we can shell out to bash to do it for us. - * This lets us at least handle things like arrow keys, but we don't + * This lets us at least handle things like arrow keys, but we do not * get any entry history. :( * * Shamelessly ripped from when I wrote the same code for MediaWiki. :) @@ -112,7 +112,7 @@ function console_help() print "Welcome to StatusNet's interactive PHP console!\n"; print "Type some PHP code and it'll execute...\n"; print "\n"; - print "Hint: return a value of any time to output it via var_export():\n"; + print "Hint: return a value of any type to output it via var_export():\n"; print " \$profile = new Profile();\n"; print " \$profile->find();\n"; print " \$profile->fetch();\n";