Repository: spark
Updated Branches:
  refs/heads/branch-2.0 1b1c849bf -> 5ecd3c23a


[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 <man...@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/5ecd3c23
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/5ecd3c23
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/5ecd3c23

Branch: refs/heads/branch-2.0
Commit: 5ecd3c23ab63de68addf2f7405377dbb2a7e08e9
Parents: 1b1c849
Author: manishAtGit <man...@knoldus.com>
Authored: Wed Nov 30 14:46:50 2016 -0500
Committer: Andrew Or <andrewo...@gmail.com>
Committed: Wed Nov 30 14:49:18 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/spark/blob/5ecd3c23/docs/quick-start.md
----------------------------------------------------------------------
diff --git a/docs/quick-start.md b/docs/quick-start.md
index 04b0f0a..c67b010 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-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to