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 <manish@knoldus.com>

Closes #16081 from manishatGit/fixed-quick-start-guide.
  • Loading branch information
manishAtGit authored and andrewor14 committed Nov 30, 2016
1 parent 1b1c849 commit 5ecd3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quick-start.md
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 5ecd3c2

Please sign in to comment.