Skip to content

Commit

Permalink
[SPARK-4656][Doc] Typo in Programming Guide markdown
Browse files Browse the repository at this point in the history
Grammatical error in Programming Guide document

Author: lewuathe <[email protected]>

Closes #3412 from Lewuathe/typo-programming-guide and squashes the following commits:

a3e2f00 [lewuathe] Typo in Programming Guide markdown

(cherry picked from commit a217ec5)
Signed-off-by: Josh Rosen <[email protected]>
  • Loading branch information
Lewuathe authored and JoshRosen committed Dec 1, 2014
1 parent d324728 commit c899f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/programming-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ Accumulators are variables that are only "added" to through an associative opera
therefore be efficiently supported in parallel. They can be used to implement counters (as in
MapReduce) or sums. Spark natively supports accumulators of numeric types, and programmers
can add support for new types. If accumulators are created with a name, they will be
displayed in Spark's UI. This can can be useful for understanding the progress of
displayed in Spark's UI. This can be useful for understanding the progress of
running stages (NOTE: this is not yet supported in Python).

An accumulator is created from an initial value `v` by calling `SparkContext.accumulator(v)`. Tasks
Expand Down

0 comments on commit c899f03

Please sign in to comment.