From 8dd943fc3e8adfc638a3ed4ffbd19076e19adfe5 Mon Sep 17 00:00:00 2001 From: Nick Pentreath <nick.pentreath@gmail.com> Date: Mon, 11 Mar 2013 09:14:00 +0200 Subject: [PATCH] Fix doc style --- bagel/src/main/scala/spark/bagel/Bagel.scala | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/bagel/src/main/scala/spark/bagel/Bagel.scala b/bagel/src/main/scala/spark/bagel/Bagel.scala index 013388cbdf..e10c03f6ba 100644 --- a/bagel/src/main/scala/spark/bagel/Bagel.scala +++ b/bagel/src/main/scala/spark/bagel/Bagel.scala @@ -34,7 +34,7 @@ object Bagel extends Logging { * @tparam M message type * @tparam C combiner * @tparam A aggregator - * @return a set of (K, V) pairs representing the graph after completion of the program + * @return an RDD of (K, V) pairs representing the graph after completion of the program */ def run[K: Manifest, V <: Vertex : Manifest, M <: Message[K] : Manifest, C: Manifest, A: Manifest]( @@ -110,8 +110,10 @@ object Bagel extends Logging { addAggregatorArg[K, V, M, C](compute)) } - /** Runs a Bagel program with no [[spark.bagel.Aggregator]], default [[spark.HashPartitioner]] - * and default storage level*/ + /** + * Runs a Bagel program with no [[spark.bagel.Aggregator]], default [[spark.HashPartitioner]] + * and default storage level + */ def run[K: Manifest, V <: Vertex : Manifest, M <: Message[K] : Manifest, C: Manifest]( sc: SparkContext, vertices: RDD[(K, V)], @@ -139,8 +141,10 @@ object Bagel extends Logging { addAggregatorArg[K, V, M, C](compute)) } - /** Runs a Bagel program with no [[spark.bagel.Aggregator]], default [[spark.HashPartitioner]], - * [[spark.bagel.DefaultCombiner]] and the default storage level */ + /** + * Runs a Bagel program with no [[spark.bagel.Aggregator]], default [[spark.HashPartitioner]], + * [[spark.bagel.DefaultCombiner]] and the default storage level + */ def run[K: Manifest, V <: Vertex : Manifest, M <: Message[K] : Manifest]( sc: SparkContext, vertices: RDD[(K, V)], @@ -150,8 +154,10 @@ object Bagel extends Logging { compute: (V, Option[Array[M]], Int) => (V, Array[M]) ): RDD[(K, V)] = run(sc, vertices, messages, numPartitions, DEFAULT_STORAGE_LEVEL)(compute) - /** Runs a Bagel program with no [[spark.bagel.Aggregator]], the default [[spark.HashPartitioner]] - * and [[spark.bagel.DefaultCombiner]]*/ + /** + * Runs a Bagel program with no [[spark.bagel.Aggregator]], the default [[spark.HashPartitioner]] + * and [[spark.bagel.DefaultCombiner]] + */ def run[K: Manifest, V <: Vertex : Manifest, M <: Message[K] : Manifest]( sc: SparkContext, vertices: RDD[(K, V)], -- GitLab