Repository: spark Updated Branches: refs/heads/branch-2.1 3de93fb48 -> eae85da38
[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. (cherry picked from commit bc95ea0be5b880673d452f5eec47fbfd403d94ce) Signed-off-by: Andrew Or <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/eae85da3 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/eae85da3 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/eae85da3 Branch: refs/heads/branch-2.1 Commit: eae85da388e27c7eda8be3933f673ad7f1a3c6af Parents: 3de93fb Author: manishAtGit <[email protected]> Authored: Wed Nov 30 14:46:50 2016 -0500 Committer: Andrew Or <[email protected]> Committed: Wed Nov 30 14:47:06 2016 -0500 ---------------------------------------------------------------------- docs/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/eae85da3/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]
