aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMatei Zaharia <matei.zaharia@gmail.com>2013-09-01 14:53:57 -0700
committerMatei Zaharia <matei.zaharia@gmail.com>2013-09-01 14:53:57 -0700
commitf957c26fa27486c329d82cb66595b2cf07aed0ef (patch)
tree86cb7e3b2611b9287335699dcd535f145ccf56d6 /README.md
parenta30fac16ca0525f2001b127e5f9518c9680844c9 (diff)
parent0a8cc309211c62f8824d76618705c817edcf2424 (diff)
downloadspark-f957c26fa27486c329d82cb66595b2cf07aed0ef.tar.gz
spark-f957c26fa27486c329d82cb66595b2cf07aed0ef.tar.bz2
spark-f957c26fa27486c329d82cb66595b2cf07aed0ef.zip
Merge pull request #882 from mateiz/package-rename
Rename spark package to org.apache.spark
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2ddfe862a2..c4170650f7 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Or, for the Python API, the Python shell (`./pyspark`).
Spark also comes with several sample programs in the `examples` directory.
To run one of them, use `./run-example <class> <params>`. For example:
- ./run-example spark.examples.SparkLR local[2]
+ ./run-example org.apache.spark.examples.SparkLR local[2]
will run the Logistic Regression example locally on 2 CPUs.