Author: cutting
Date: Thu Jun 18 20:11:04 2009
New Revision: 786235

URL: http://svn.apache.org/viewvc?rev=786235&view=rev
Log:
AVRO-55. Fix two spec doc typos.

Modified:
    hadoop/avro/trunk/CHANGES.txt
    hadoop/avro/trunk/src/doc/content/xdocs/spec.xml

Modified: hadoop/avro/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/avro/trunk/CHANGES.txt?rev=786235&r1=786234&r2=786235&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Thu Jun 18 20:11:04 2009
@@ -100,3 +100,5 @@
 
     AVRO-51. Fix testio.py to exit correctly. (Philip Zeyliger 
     via sharad)
+
+    AVRO-55. Fix two spec document typos.  (cutting)

Modified: hadoop/avro/trunk/src/doc/content/xdocs/spec.xml
URL: 
http://svn.apache.org/viewvc/hadoop/avro/trunk/src/doc/content/xdocs/spec.xml?rev=786235&r1=786234&r2=786235&view=diff
==============================================================================
--- hadoop/avro/trunk/src/doc/content/xdocs/spec.xml (original)
+++ hadoop/avro/trunk/src/doc/content/xdocs/spec.xml Thu Jun 18 20:11:04 2009
@@ -122,7 +122,6 @@
                    <tr><td>enum</td><td>string</td><td>"FOO"</td></tr>
                    <tr><td>array</td><td>array</td><td>[1]</td></tr>
                    <tr><td>map</td><td>object</td><td>{"a": 1}</td></tr>
-                   <tr><td>bytes</td><td>base64</td><td>"YQo="</td></tr>
                  </table>
                </li>
              </ul>
@@ -193,7 +192,7 @@
           arrays.  For example, <code>["string", "null"]</code>
           declares a schema which may be either a string or null.</p>
          <p>Unions may not contain more than one schema with the same
-         type, except for the named types record and fixed.  For
+         type, except for the named types record, fixed and enum.  For
          example, unions containing two array types or two map types
          are not permitted, but two types with different names are
          permitted.  (Names permit efficient resolution when reading


Reply via email to