aboutsummaryrefslogtreecommitdiff
path: root/docs/contributing-to-spark.md
diff options
context:
space:
mode:
authorAndy Konwinski <andyk@berkeley.edu>2012-09-12 16:05:19 -0700
committerAndy Konwinski <andyk@berkeley.edu>2012-09-12 16:06:18 -0700
commit4d3a17c8d768a4e76bfb895ce53715434447cb62 (patch)
tree35d92aab36165b3ec68209622c260ebb9e3e9147 /docs/contributing-to-spark.md
parent49e98500a9b1f93ab3224c4358dbc56f1e37ff35 (diff)
downloadspark-4d3a17c8d768a4e76bfb895ce53715434447cb62.tar.gz
spark-4d3a17c8d768a4e76bfb895ce53715434447cb62.tar.bz2
spark-4d3a17c8d768a4e76bfb895ce53715434447cb62.zip
Fixing lots of broken links.
Diffstat (limited to 'docs/contributing-to-spark.md')
-rw-r--r--docs/contributing-to-spark.md23
1 files changed, 7 insertions, 16 deletions
diff --git a/docs/contributing-to-spark.md b/docs/contributing-to-spark.md
index fc7544887b..3585bda2d3 100644
--- a/docs/contributing-to-spark.md
+++ b/docs/contributing-to-spark.md
@@ -4,23 +4,14 @@ title: How to Contribute to Spark
---
# Contributing to Spark
-The Spark team welcomes contributions in the form of GitHub pull requests.
-Here are a few tips to get your contribution in:
+The Spark team welcomes contributions in the form of GitHub pull requests. Here are a few tips to get your contribution in:
-- Break your work into small, single-purpose patches if possible. It's much harder to merge
- in a large change with a lot of disjoint features.
-- Submit the patch as a GitHub pull request. For a tutorial, see
- the GitHub guides on [[forking a repo|https://help.github.com/articles/fork-a-repo]]
- and [[sending a pull request|https://help.github.com/articles/using-pull-requests]].
-- Follow the style of the existing codebase. Specifically, we use [[standard Scala
- style guide|http://docs.scala-lang.org/style/]], but with the following changes:
+- Break your work into small, single-purpose patches if possible. It's much harder to merge in a large change with a lot of disjoint features.
+- Submit the patch as a GitHub pull request. For a tutorial, see the GitHub guides on [forking a repo](https://help.github.com/articles/fork-a-repo) and [sending a pull request](https://help.github.com/articles/using-pull-requests).
+- Follow the style of the existing codebase. Specifically, we use [standard Scala style guide](http://docs.scala-lang.org/style/), but with the following changes:
* Maximum line length of 100 characters.
* Always import packages using absolute paths (e.g. `scala.collection.Map` instead of `collection.Map`).
- * No "infix" syntax for methods other than operators. For example, don't write
- `table containsKey myKey`; replace it with `table.containsKey(myKey)`.
-- Add unit tests to your new code. We use [[ScalaTest|http://www.scalatest.org/]] for
- testing. Just add a new Suite in `core/src/test`, or methods to an existing Suite.
+ * No "infix" syntax for methods other than operators. For example, don't write `table containsKey myKey`; replace it with `table.containsKey(myKey)`.
+- Add unit tests to your new code. We use [ScalaTest](http://www.scalatest.org/) for testing. Just add a new Suite in `core/src/test`, or methods to an existing Suite.
-If you'd like to report a bug but don't have time to fix it, you can still post it to
-our [[issues page|https://github.com/mesos/spark/issues]]. Also, feel free to email
-the [[mailing list|http://www.spark-project.org/mailing-lists.html]].
+If you'd like to report a bug but don't have time to fix it, you can still post it to our [issues page](https://github.com/mesos/spark/issues). Also, feel free to email the [mailing list](http://www.spark-project.org/mailing-lists.html).