diff --git a/docs/css/main.css b/docs/css/main.css
index 84fe1d44ed7957b6d1b831381be1cb83ef1cbc92..13fe0b819514c5145530b22790441ecb40aab8e3 100755
--- a/docs/css/main.css
+++ b/docs/css/main.css
@@ -73,8 +73,13 @@ a:hover code {
  * using solution at http://stackoverflow.com/questions/8878033/how-
  * to-make-twitter-bootstrap-menu-dropdown-on-hover-rather-than-click
  **/
+.dropdown-menu {
+  /* Remove the default 2px top margin which causes a small
+    gap between the hover trigger area and the popup menu */
+  margin-top: 0;
+}
 ul.nav li.dropdown:hover ul.dropdown-menu{
-    display: block;
+  display: block;
 }
 a.menu:after, .dropdown-toggle:after {
   content: none;
diff --git a/docs/quick-start.md b/docs/quick-start.md
index 2e88fd863e2425628c1042884a8a83642863d3bc..d28e78823988e4a56ea386a8d930f0b2a72abfe6 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -8,7 +8,7 @@ title: Spark Quick Start
 
 # Introduction
 
-This document provides a quick-and-dirty look at Spark's API. See the [programming guide](scala-programming-guide.html) for a complete reference. To follow along with this guide, you only need to have successfully [built spark]() on one machine. Building Spark is as simple as running
+This document provides a quick-and-dirty look at Spark's API. See the [programming guide](scala-programming-guide.html) for a complete reference. To follow along with this guide, you only need to have successfully built Spark on one machine. Building Spark is as simple as running
 
 {% highlight bash %}
 $ sbt/sbt package