You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by pa...@apache.org on 2015/04/21 20:53:47 UTC

svn commit: r1675183 - /mahout/site/mahout_cms/trunk/content/users/environment/how-to-build-an-app.mdtext

Author: pat
Date: Tue Apr 21 18:53:46 2015
New Revision: 1675183

URL: http://svn.apache.org/r1675183
Log:
CMS commit to mahout by pat

Modified:
    mahout/site/mahout_cms/trunk/content/users/environment/how-to-build-an-app.mdtext

Modified: mahout/site/mahout_cms/trunk/content/users/environment/how-to-build-an-app.mdtext
URL: http://svn.apache.org/viewvc/mahout/site/mahout_cms/trunk/content/users/environment/how-to-build-an-app.mdtext?rev=1675183&r1=1675182&r2=1675183&view=diff
==============================================================================
--- mahout/site/mahout_cms/trunk/content/users/environment/how-to-build-an-app.mdtext (original)
+++ mahout/site/mahout_cms/trunk/content/users/environment/how-to-build-an-app.mdtext Tue Apr 21 18:53:46 2015
@@ -92,7 +92,7 @@ All we need to do now is write the indic
 
     // zip a pair of arrays into an array of pairs, reattaching the action names
     val indicatorDescriptions = actions.map(a => a._1).zip(indicatorMatrices)
-writeIndicators(indicatorDescriptions)
+    writeIndicators(indicatorDescriptions)
 
 
 The ```writeIndicators``` method uses the default write function ```dfsWrite```.
@@ -143,8 +143,7 @@ See the Github project for the full sour
 
     packSettings
 
-    packMain := Map(
-      "cooc" -> "CooccurrenceDriver")
+    packMain := Map("cooc" -> "CooccurrenceDriver")
 
 
 ##Build