Skip to content

Commit

Permalink
[SPARK][EXAMPLE] Added missing semicolon in quick-start-guide example
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
manishAtGit authored and andrewor14 committed Nov 30, 2016
1 parent 3f03c90 commit bc95ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ public class SimpleApp {

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

sc.stop()
sc.stop();
}
}
{% endhighlight %}
Expand Down

0 comments on commit bc95ea0

Please sign in to comment.