From 364c14af9a339ac36b0fc54d1559e260e1550ab0 Mon Sep 17 00:00:00 2001
From: Sumedh Mungee <smungee@gmail.com>
Date: Wed, 21 May 2014 01:22:25 -0700
Subject: [PATCH] [SPARK-1250] Fixed misleading comments in bin/pyspark,
 bin/spark-class

Fixed a couple of misleading comments in bin/pyspark and bin/spark-class. The comments make it seem like the script is looking for the Scala installation when in fact it is looking for Spark.

Author: Sumedh Mungee <smungee@gmail.com>

Closes #843 from smungee/spark-1250-fix-comments and squashes the following commits:

26870f3 [Sumedh Mungee] [SPARK-1250] Fixed misleading comments in bin/pyspark and bin/spark-class

(cherry picked from commit 6e337380fc47071fc7fb28d744e8209c729fe1e9)
Signed-off-by: Reynold Xin <rxin@apache.org>
---
 bin/pyspark     | 2 +-
 bin/spark-class | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/pyspark b/bin/pyspark
index 3908ffe799..d0fa56f319 100755
--- a/bin/pyspark
+++ b/bin/pyspark
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-# Figure out where the Scala framework is installed
+# Figure out where Spark is installed
 FWDIR="$(cd `dirname $0`/..; pwd)"
 
 # Export this as SPARK_HOME
diff --git a/bin/spark-class b/bin/spark-class
index 2e57295fd0..e884511010 100755
--- a/bin/spark-class
+++ b/bin/spark-class
@@ -24,7 +24,7 @@ esac
 
 SCALA_VERSION=2.10
 
-# Figure out where the Scala framework is installed
+# Figure out where Spark is installed
 FWDIR="$(cd `dirname $0`/..; pwd)"
 
 # Export this as SPARK_HOME
-- 
GitLab