Author: cutting
Date: Mon Jun 1 22:32:52 2009
New Revision: 780856
URL: http://svn.apache.org/viewvc?rev=780856&view=rev
Log:
AVRO-40. Fix a typo in spec, where 'unsigned' was used where 'signed' was
intended.
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=780856&r1=780855&r2=780856&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Mon Jun 1 22:32:52 2009
@@ -72,3 +72,6 @@
(cutting)
AVRO-39. Fix bug in Java record schema toString(). (sharad)
+
+ AVRO-40. Fix typo in specfication, where 'unsigned' was used where
+ 'signed' was intended. (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=780856&r1=780855&r2=780856&view=diff
==============================================================================
--- hadoop/avro/trunk/src/doc/content/xdocs/spec.xml (original)
+++ hadoop/avro/trunk/src/doc/content/xdocs/spec.xml Mon Jun 1 22:32:52 2009
@@ -65,8 +65,8 @@
<ul>
<li><code>string</code>: unicode character sequence</li>
<li><code>bytes</code>: sequence of 8-bit bytes</li>
- <li><code>int</code>: 32-bit unsigned integer</li>
- <li><code>long</code>: 64-bit unsigned integer</li>
+ <li><code>int</code>: 32-bit signed integer</li>
+ <li><code>long</code>: 64-bit signed integer</li>
<li><code>float</code>: 32-bit IEEE floating-point number</li>
<li><code>double</code>: 64-bit IEEE floating-point number</li>
<li><code>boolean</code>: a binary value</li>