Author: cutting
Date: Fri Nov 20 23:11:44 2009
New Revision: 882764

URL: http://svn.apache.org/viewvc?rev=882764&view=rev
Log:
AVRO-227.  Fix a typo in the spec document.  Contributed by Todd Lipcon.

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=882764&r1=882763&r2=882764&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Fri Nov 20 23:11:44 2009
@@ -148,6 +148,8 @@
     AVRO-225. In generated Java, use dollar-sign, not underscore, to
     prevent name conflicts. (cutting)
 
+    AVRO-227. Fix a typo in the spec document.  (Todd Lipcon via cutting)
+
 Avro 1.2.0 (14 October 2009)
 
   INCOMPATIBLE CHANGES

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=882764&r1=882763&r2=882764&view=diff
==============================================================================
--- hadoop/avro/trunk/src/doc/content/xdocs/spec.xml (original)
+++ hadoop/avro/trunk/src/doc/content/xdocs/spec.xml Fri Nov 20 23:11:44 2009
@@ -335,10 +335,10 @@
            <p>An instance of this record whose <code>a</code> field has
              value 27 (encoded as hex <code>36</code>) and
              whose <code>b</code> field has value "foo" (encoded as hex
-             bytes <code>OC 66 6f 6f</code>), would be encoded simply
+             bytes <code>06 66 6f 6f</code>), would be encoded simply
              as the concatenation of these, namely the hex byte
              sequence:</p>
-           <source>36 0C 66 6f 6f</source>
+           <source>36 06 66 6f 6f</source>
          </section>
           
           <section>


Reply via email to