From f8c46583190c7004883b6ae412dce9cf6010eb4c Mon Sep 17 00:00:00 2001 From: gggeek <giunta.gaetano@gmail.com> Date: Sat, 21 Feb 2015 23:18:59 +0000 Subject: [PATCH] Fix some example code in the manual --- doc/xmlrpc_php.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/xmlrpc_php.xml b/doc/xmlrpc_php.xml index 139ef6c7..363f8a73 100644 --- a/doc/xmlrpc_php.xml +++ b/doc/xmlrpc_php.xml @@ -1322,10 +1322,10 @@ PHP-XMLRPC User manual <para>Examples:</para> <programlisting language="php"> -$myInt = new xmlrpcvalue(1267, "int"); -$myString = new xmlrpcvalue("Hello, World!", "string"); -$myBool = new xmlrpcvalue(1, "boolean"); -$myString2 = new xmlrpcvalue(1.24, "string"); // note: this will serialize a php float value as xmlrpc string +$myInt = new xmlrpcval(1267, "int"); +$myString = new xmlrpcval("Hello, World!", "string"); +$myBool = new xmlrpcval(1, "boolean"); +$myString2 = new xmlrpcval(1.24, "string"); // note: this will serialize a php float value as xmlrpc string </programlisting> <para>The fourth constructor form can be used to compose complex -- 2.47.0