From 933a6548d423cf17448207a99299cf36fc1a95f6 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Tue, 22 Nov 2016 11:40:18 +0000 Subject: [SPARK-18447][DOCS] Fix the markdown for `Note:`/`NOTE:`/`Note that` across Python API documentation ## What changes were proposed in this pull request? It seems in Python, there are - `Note:` - `NOTE:` - `Note that` - `.. note::` This PR proposes to fix those to `.. note::` to be consistent. **Before** 2016-11-21 1 18 49 2016-11-21 12 42 43 **After** 2016-11-21 1 18 42 2016-11-21 12 42 51 ## How was this patch tested? The notes were found via ```bash grep -r "Note: " . grep -r "NOTE: " . grep -r "Note that " . ``` And then fixed one by one comparing with API documentation. After that, manually tested via `make html` under `./python/docs`. Author: hyukjinkwon Closes #15947 from HyukjinKwon/SPARK-18447. --- python/pyspark/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/pyspark/conf.py') diff --git a/python/pyspark/conf.py b/python/pyspark/conf.py index 64b6f238e9..491b3a8197 100644 --- a/python/pyspark/conf.py +++ b/python/pyspark/conf.py @@ -90,8 +90,8 @@ class SparkConf(object): All setter methods in this class support chaining. For example, you can write C{conf.setMaster("local").setAppName("My app")}. - Note that once a SparkConf object is passed to Spark, it is cloned - and can no longer be modified by the user. + .. note:: Once a SparkConf object is passed to Spark, it is cloned + and can no longer be modified by the user. """ def __init__(self, loadDefaults=True, _jvm=None, _jconf=None): -- cgit v1.2.3