You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2015/05/11 23:54:53 UTC

svn commit: r1678831 - in /pig/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/basic.xml

Author: daijy
Date: Mon May 11 21:54:53 2015
New Revision: 1678831

URL: http://svn.apache.org/r1678831
Log:
PIG-4528: Fix a typo in src/docs/src/documentation/content/xdocs/basic.xml

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/src/docs/src/documentation/content/xdocs/basic.xml

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1678831&r1=1678830&r2=1678831&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon May 11 21:54:53 2015
@@ -76,6 +76,8 @@ PIG-4333: Split BigData tests into multi
  
 BUG FIXES
 
+PIG-4528: Fix a typo in src/docs/src/documentation/content/xdocs/basic.xml (namusyaka via daijy)
+
 PIG-4532: Pig Documentation contains typo for AvroStorage (fredericschmaljohann via daijy)
 
 PIG-4377: Skewed outer join produce wrong result in some cases (daijy)

Modified: pig/trunk/src/docs/src/documentation/content/xdocs/basic.xml
URL: http://svn.apache.org/viewvc/pig/trunk/src/docs/src/documentation/content/xdocs/basic.xml?rev=1678831&r1=1678830&r2=1678831&view=diff
==============================================================================
--- pig/trunk/src/docs/src/documentation/content/xdocs/basic.xml (original)
+++ pig/trunk/src/docs/src/documentation/content/xdocs/basic.xml Mon May 11 21:54:53 2015
@@ -844,7 +844,7 @@ This will cause an error …</source>
    <title>Example: Outer Bag</title>
    <p>In this example A is a relation or bag of tuples. You can think of this bag as an outer bag.</p>
 <source>
-A = LOAD 'data' as (f1:int, f2:int, f3;int);
+A = LOAD 'data' as (f1:int, f2:int, f3:int);
 DUMP A;
 (1,2,3)
 (4,2,1)