You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by an...@apache.org on 2016/11/30 19:46:31 UTC

spark git commit: [SPARK][EXAMPLE] Added missing semicolon in quick-start-guide example

Repository: spark
Updated Branches:
  refs/heads/master 3f03c90a8 -> bc95ea0be


[SPARK][EXAMPLE] Added missing semicolon in quick-start-guide example

## What changes were proposed in this pull request?

Added missing semicolon in quick-start-guide java example code which wasn't compiling before.

## How was this patch tested?
Locally by running and generating site for docs. You can see the last line contains ";" in the below snapshot.
![image](https://cloud.githubusercontent.com/assets/10628224/20751760/9a7e0402-b723-11e6-9aa8-3b6ca2d92ebf.png)

Author: manishAtGit <ma...@knoldus.com>

Closes #16081 from manishatGit/fixed-quick-start-guide.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/bc95ea0b
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/bc95ea0b
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/bc95ea0b

Branch: refs/heads/master
Commit: bc95ea0be5b880673d452f5eec47fbfd403d94ce
Parents: 3f03c90
Author: manishAtGit <ma...@knoldus.com>
Authored: Wed Nov 30 14:46:50 2016 -0500
Committer: Andrew Or <an...@gmail.com>
Committed: Wed Nov 30 14:46:50 2016 -0500

----------------------------------------------------------------------
 docs/quick-start.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/bc95ea0b/docs/quick-start.md
----------------------------------------------------------------------
diff --git a/docs/quick-start.md b/docs/quick-start.md
index cb9a378..0836c60 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -330,7 +330,7 @@ public class SimpleApp {
 
     System.out.println("Lines with a: " + numAs + ", lines with b: " + numBs);
     
-    sc.stop()
+    sc.stop();
   }
 }
 {% endhighlight %}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org