Fixed higgledy-piggledy productionset elements to make them more eyeball-friendly.
authorkgs <kgs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 8 May 2009 20:30:11 +0000 (20:30 +0000)
committerkgs <kgs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 8 May 2009 20:30:11 +0000 (20:30 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13107 dcc99617-32d9-48b4-a31d-7c20da2025e4

docs/Guides/JSONGrammar.xml

index b26d8f0..0eeff23 100644 (file)
                        <listitem>
                                <para>If a construct can be defined more than one way, then the alternatives may
                                        appear in separate productions; or, they may appear in the same production,
-                                       separated by pipe symbols. The choice between these representations is of only
+                                       separated by pipe symbols ( | ). The choice between these representations is of only
                                        cosmetic significance.</para>
                        </listitem>
                        <listitem>
-                               <para>A construct enclosed within square brackets is optional.</para>
+                               <para>A construct enclosed within [square brackets] is optional.</para>
                        </listitem>
                        <listitem>
-                               <para>A construct enclosed within curly braces may be repeated zero or more
+                               <para>A construct enclosed within {curly braces} may be repeated zero or more
                                        times.</para>
                        </listitem>
                        <listitem>
 
                        <production xml:id="ebnf.query">
                                <lhs> query </lhs>
-                               <rhs> '{'<sbr/> '"from"' ':' from_list<sbr/> [ ',' '"select"' ':' select_list
-                                       ]<sbr/> [ ',' '"where"' ':' where_condition ]<sbr/> [ ',' '"having"' ':'
-                                       where_condition ]<sbr/> [ ',' '"order_by"' ':' order_by_list ]<sbr/> [ ','
-                                       '"limit"' ':' integer ]<sbr/> [ ',' '"offset"' ':' integer ]<sbr/> [ ','
-                                       '"distinct"' ':' boolean ]<sbr/> [ ',' '"no_i18n"' ':' boolean ]<sbr/> '}'
+                               <rhs> 
+                                       '{'<sbr/> 
+                                       '"from"' ':' from_list<sbr/> 
+                                       [ ',' '"select"' ':' select_list ]<sbr/> 
+                                       [ ',' '"where"' ':' where_condition ]<sbr/> 
+                                       [ ',' '"having"' ':' where_condition ]<sbr/> 
+                                       [ ',' '"order_by"' ':' order_by_list ]<sbr/> 
+                                       [ ',' '"limit"' ':' integer ]<sbr/> 
+                                       [ ',' '"offset"' ':' integer ]<sbr/> 
+                                       [ ',' '"distinct"' ':' boolean ]<sbr/> 
+                                       [ ',' '"no_i18n"' ':' boolean ]<sbr/> 
+                                       '}'
                                </rhs>
                        </production>