summaryrefslogtreecommitdiff
path: root/php
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2008-08-08 14:32:59 -0700
committerRuss Allbery <rra@stanford.edu>2008-08-08 14:32:59 -0700
commitf094dcb088e188d2e7b8763d5aca3bba8532d397 (patch)
treef12375b902417b876c54ac25516882e0f532b77b /php
parente89411242f29d0847574948d241f298113ddb456 (diff)
Use proper wording for the remctl PECL extension for PHP
The PHP license requires that one not call one's extension "PHP foo" and instead call it "foo for PHP." I very much doubt anyone is going to care, but be fully correct anyway.
Diffstat (limited to 'php')
-rw-r--r--php/config.m42
-rw-r--r--php/php_remctl.c4
-rw-r--r--php/php_remctl.h2
-rw-r--r--php/tests/002.phpt2
-rw-r--r--php/tests/003.phpt2
5 files changed, 6 insertions, 6 deletions
diff --git a/php/config.m4 b/php/config.m4
index 5a4a584..9ab129f 100644
--- a/php/config.m4
+++ b/php/config.m4
@@ -1,4 +1,4 @@
-dnl config.m4 -- PHP remctl PECL module configuration.
+dnl remctl PECL extension for PHP configuration
dnl
dnl Provides additional configuration hooks for the PHP module build system.
dnl This file is used by the phpize frameowrk.
diff --git a/php/php_remctl.c b/php/php_remctl.c
index ef2caf9..51bc814 100644
--- a/php/php_remctl.c
+++ b/php/php_remctl.c
@@ -1,5 +1,5 @@
/*
- * PHP remctl PECL module.
+ * remctl PECL extension for PHP
*
* Provides bindings for PHP very similar to the libremctl library for C or
* the Net::Remctl bindings for Perl.
@@ -197,7 +197,7 @@ cleanup:
/*
- * Now the complex interface. First, the constructor.
+ * Now the full interface. First, the constructor.
*/
ZEND_FUNCTION(remctl_new)
{
diff --git a/php/php_remctl.h b/php/php_remctl.h
index d436d45..edb74c2 100644
--- a/php/php_remctl.h
+++ b/php/php_remctl.h
@@ -1,5 +1,5 @@
/*
- * Declarations for the PHP remctl PECL module.
+ * Declarations for the remctl PECL extension for PHP
*
* Written by Andrew Mortensen <admorten@umich.edu>, 2008
* Copyright 2008 Andrew Mortensen <admorten@umich.edu>
diff --git a/php/tests/002.phpt b/php/tests/002.phpt
index 2416307..d50df72 100644
--- a/php/tests/002.phpt
+++ b/php/tests/002.phpt
@@ -1,5 +1,5 @@
--TEST--
-Check basic remctl API
+Check simplified remctl API
--SKIPIF--
<?php
if (!extension_load("remctl")) print "skip";
diff --git a/php/tests/003.phpt b/php/tests/003.phpt
index c190069..715ecc7 100644
--- a/php/tests/003.phpt
+++ b/php/tests/003.phpt
@@ -1,5 +1,5 @@
--TEST--
-Check advanced remctl API
+Check full remctl API
--SKIPIF--
<?php
if (!extension_load("remctl")) print "skip";