Repository: spark Updated Branches: refs/heads/master 42b6c1fb0 -> 1a7abf3f4
[SPARK-25933][DOCUMENTATION] Fix pstats.Stats() reference in configuration.md ## What changes were proposed in this pull request? Change ptats.Stats() to pstats.Stats() for `spark.python.profile.dump` in configuration.md. ## How was this patch tested? Doc test Closes #22933 from AlexHagerman/doc_fix. Authored-by: Alex Hagerman <[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/1a7abf3f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/1a7abf3f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/1a7abf3f Branch: refs/heads/master Commit: 1a7abf3f453f7d6012d7e842cf05f29f3afbb3bc Parents: 42b6c1f Author: Alex Hagerman <[email protected]> Authored: Sat Nov 3 12:56:59 2018 -0500 Committer: Sean Owen <[email protected]> Committed: Sat Nov 3 12:56:59 2018 -0500 ---------------------------------------------------------------------- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/1a7abf3f/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 8cb0ed1..11ee7a9 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -445,7 +445,7 @@ Apart from these, the following properties are also available, and may be useful <td> The directory which is used to dump the profile result before driver exiting. The results will be dumped as separated file for each RDD. They can be loaded - by ptats.Stats(). If this is specified, the profile result will not be displayed + by <code>pstats.Stats()</code>. If this is specified, the profile result will not be displayed automatically. </td> </tr> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
