From 6b013047a1288f3b18ce80593b0de4421d9938fb Mon Sep 17 00:00:00 2001 From: manishAtGit Date: Wed, 30 Nov 2016 16:45:45 +0530 Subject: [PATCH] added missing semicolon in quick-start-guide example code --- docs/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index cb9a378199562..0836c602feafa 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 %}