aboutsummaryrefslogtreecommitdiff
path: root/docs/building-with-maven.md
diff options
context:
space:
mode:
authorAndy Konwinski <andyk@berkeley.edu>2013-03-20 17:30:31 -0700
committerAndy Konwinski <andyk@berkeley.edu>2013-03-20 17:30:31 -0700
commit446b801b3b888b335e8be3a9ab7a29aba3285d78 (patch)
treed41487e5be5dc0967326b652a29268b158775805 /docs/building-with-maven.md
parentad7f0452ab27b71ede3eea67d03ebd6d1710ee90 (diff)
downloadspark-446b801b3b888b335e8be3a9ab7a29aba3285d78.tar.gz
spark-446b801b3b888b335e8be3a9ab7a29aba3285d78.tar.bz2
spark-446b801b3b888b335e8be3a9ab7a29aba3285d78.zip
Fixing typos pointed out by Matei
Diffstat (limited to 'docs/building-with-maven.md')
-rw-r--r--docs/building-with-maven.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/building-with-maven.md b/docs/building-with-maven.md
index bbf89cf17a..c2eeafd07a 100644
--- a/docs/building-with-maven.md
+++ b/docs/building-with-maven.md
@@ -29,11 +29,11 @@ It uses the scala-maven-plugin which supports incremental and continuous compila
Tests are run by default via the scalatest-maven-plugin. With this you can do things like:
-skip test execution (but not compilation):
+Skip test execution (but not compilation):
$ mvn -DskipTests -Phadoop2 clean install
-To runn a specific test suite:
+To run a specific test suite:
$ mvn -Phadoop2 -Dsuites=spark.repl.ReplSuite test