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.  Author: manishAtGit <[email protected]> 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 <[email protected]> Authored: Wed Nov 30 14:46:50 2016 -0500 Committer: Andrew Or <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
