Subject: | XML spec in Froody::QuickStart broken |
The first XML spec in Froody::QuickStart contains:
<!-- the parameters we pass to the method -->
<attributes>
<attribute name="who" type="text" optional="0" />
</attribute>
As well as being invalid XML, this doesn't do what it's supposed to! It needs to be:
<!-- the parameters we pass to the method -->
<arguments>
<argument name="who" type="text" optional="0" />
</arguments>
*** QuickStart.old Sat Dec 3 12:35:12 2005
--- QuickStart.pod Sat Dec 3 12:35:43 2005
***************
*** 47,55 ****
<method name="examples.myapi.greet">
<!-- the parameters we pass to the method -->
! <attributes>
! <attribute name="who" type="text" optional="0" />
! </attribute>
<!-- an example response, what the returned XML will look like -->
<response>
--- 47,55 ----
<method name="examples.myapi.greet">
<!-- the parameters we pass to the method -->
! <arguments>
! <argument name="who" type="text" optional="0" />
! </arguments>
<!-- an example response, what the returned XML will look like -->
<response>