aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBo Meng <mengbo@hotmail.com>2016-05-22 08:10:54 -0500
committerSean Owen <sowen@cloudera.com>2016-05-22 08:10:54 -0500
commit72288fd67edc00f56e2e47eab2ef58fe4ff8c177 (patch)
tree0a0fd9ddd6289ede9e177079b5aa1daef3137141 /core
parent7920296bf8f313e010205937d3ebcbbc7b1a1d9e (diff)
downloadspark-72288fd67edc00f56e2e47eab2ef58fe4ff8c177.tar.gz
spark-72288fd67edc00f56e2e47eab2ef58fe4ff8c177.tar.bz2
spark-72288fd67edc00f56e2e47eab2ef58fe4ff8c177.zip
[SPARK-15468][SQL] fix some typos
## What changes were proposed in this pull request? Fix some typos while browsing the codes. ## How was this patch tested? None and obvious. Author: Bo Meng <mengbo@hotmail.com> Author: bomeng <bmeng@us.ibm.com> Closes #13246 from bomeng/typo.
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/org/apache/spark/util/AccumulatorV2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/org/apache/spark/util/AccumulatorV2.scala b/core/src/main/scala/org/apache/spark/util/AccumulatorV2.scala
index 21ba46024d..0b9a47c112 100644
--- a/core/src/main/scala/org/apache/spark/util/AccumulatorV2.scala
+++ b/core/src/main/scala/org/apache/spark/util/AccumulatorV2.scala
@@ -55,7 +55,7 @@ abstract class AccumulatorV2[IN, OUT] extends Serializable {
/**
* Returns true if this accumulator has been registered. Note that all accumulators must be
- * registered before ues, or it will throw exception.
+ * registered before use, or it will throw exception.
*/
final def isRegistered: Boolean =
metadata != null && AccumulatorContext.get(metadata.id).isDefined