Repository: spark Updated Branches: refs/heads/master d17723479 -> 5bc7598b2
Fix typos ## What changes were proposed in this pull request? Small typo fixes in Pyspark. These were the only ones I stumbled across after looking around for a while. ## How was this patch tested? Manually Please review http://spark.apache.org/contributing.html before opening a pull request. Closes #22016 from tynan-cr/typo-fix-pyspark. Authored-by: Tynan CR <[email protected]> Signed-off-by: Sean Owen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/5bc7598b Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/5bc7598b Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/5bc7598b Branch: refs/heads/master Commit: 5bc7598b25dbf5ea4b3e0f149aa31fb03a5310f9 Parents: d177234 Author: Tynan CR <[email protected]> Authored: Sun Aug 12 08:13:09 2018 -0500 Committer: Sean Owen <[email protected]> Committed: Sun Aug 12 08:13:09 2018 -0500 ---------------------------------------------------------------------- python/pyspark/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/5bc7598b/python/pyspark/context.py ---------------------------------------------------------------------- diff --git a/python/pyspark/context.py b/python/pyspark/context.py index 40208ec..b77fa0e 100644 --- a/python/pyspark/context.py +++ b/python/pyspark/context.py @@ -126,7 +126,7 @@ class SparkContext(object): self.environment = environment or {} # java gateway must have been launched at this point. if conf is not None and conf._jconf is not None: - # conf has been initialized in JVM properly, so use conf directly. This represent the + # conf has been initialized in JVM properly, so use conf directly. This represents the # scenario that JVM has been launched before SparkConf is created (e.g. SparkContext is # created and then stopped, and we create a new SparkConf and new SparkContext again) self._conf = conf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
