Skip to content

Commit bc95ea0

Browse files
manishAtGitandrewor14
authored andcommitted
[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 <[email protected]> Closes apache#16081 from manishatGit/fixed-quick-start-guide.
1 parent 3f03c90 commit bc95ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ public class SimpleApp {
330330

331331
System.out.println("Lines with a: " + numAs + ", lines with b: " + numBs);
332332

333-
sc.stop()
333+
sc.stop();
334334
}
335335
}
336336
{% endhighlight %}

0 commit comments

Comments
 (0)