Jean-François,
This is indeed a typo - thanks for pointing it out.
Dave
----- Original Message -----
From: Jean-Francois Peyroux (JEAN-FRANÇOIS PEYROUX)
To: www-voice@w3.org
Cc: Stephen Potter ; Dave Wood ; Chuck Oppermann ; Arun Chitrapu ; Mike Plumpe
Sent: Thursday, May 11, 2006 7:17 PM
Subject: Typo in the document "Semantic Interpretation for Speech Recognition (SISR) Version 1.0" dated 1/11/2006
It looks like this spec has a typo in it. In section 5, in the 3rd example, the <ruleref uri="#USAirport" /> should probably be enclosed in an <item> element since it is part of a <one-of>.
May you confirm that it is a typo?
Thanks,
Jean-François Peyroux
<grammar version="1.0" xmlns="http://www.w3.org/2001/06/grammar"
xml:lang="en-US" tag-format="semantics/1.0-literals" root="flight">
<rule id="flight" scope="public">
I want to fly to
<ruleref uri="#airports"/>
</rule>
<rule id="airports" scope="private">
<one-of>
<ruleref uri="#USairport "/>
<ruleref uri="#otherairport"/>
</one-of>
</rule>
<rule id="USairport" scope="private">
<one-of>
<item>Boston<tag>BOS</tag></item>
<item>New York<tag>JFK</tag></item>
<item>Chicago<tag>ORD</tag></item>
</one-of>
</rule>
<rule id="otherairport" scope="private">
<one-of>
<item>Brussels<tag>BRU</tag></item>
<item>Paris<tag>CDG</tag></item>
<item>Rome<tag>FCO</tag></item>
</one-of>
</rule>
</grammar>