-
- Downloads
[SPARK-18447][DOCS] Fix the markdown for `Note:`/`NOTE:`/`Note that` across...
[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** <img width="567" alt="2016-11-21 1 18 49" src="https://cloud.githubusercontent.com/assets/6477701/20464305/85144c86-af88-11e6-8ee9-90f584dd856c.png"> <img width="617" alt="2016-11-21 12 42 43" src="https://cloud.githubusercontent.com/assets/6477701/20464263/27be5022-af88-11e6-8577-4bbca7cdf36c.png"> **After** <img width="554" alt="2016-11-21 1 18 42" src="https://cloud.githubusercontent.com/assets/6477701/20464306/8fe48932-af88-11e6-83e1-fc3cbf74407d.png"> <img width="628" alt="2016-11-21 12 42 51" src="https://cloud.githubusercontent.com/assets/6477701/20464264/2d3e156e-af88-11e6-93f3-cab8d8d02983.png "> ## 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 <gurwls223@gmail.com> Closes #15947 from HyukjinKwon/SPARK-18447. (cherry picked from commit 933a6548) Signed-off-by:Sean Owen <sowen@cloudera.com>
Showing
- python/pyspark/conf.py 2 additions, 2 deletionspython/pyspark/conf.py
- python/pyspark/context.py 4 additions, 4 deletionspython/pyspark/context.py
- python/pyspark/ml/classification.py 23 additions, 22 deletionspython/pyspark/ml/classification.py
- python/pyspark/ml/clustering.py 4 additions, 4 deletionspython/pyspark/ml/clustering.py
- python/pyspark/ml/feature.py 7 additions, 6 deletionspython/pyspark/ml/feature.py
- python/pyspark/ml/linalg/__init__.py 6 additions, 5 deletionspython/pyspark/ml/linalg/__init__.py
- python/pyspark/ml/regression.py 16 additions, 16 deletionspython/pyspark/ml/regression.py
- python/pyspark/mllib/clustering.py 3 additions, 3 deletionspython/pyspark/mllib/clustering.py
- python/pyspark/mllib/feature.py 12 additions, 12 deletionspython/pyspark/mllib/feature.py
- python/pyspark/mllib/linalg/__init__.py 6 additions, 5 deletionspython/pyspark/mllib/linalg/__init__.py
- python/pyspark/mllib/linalg/distributed.py 9 additions, 6 deletionspython/pyspark/mllib/linalg/distributed.py
- python/pyspark/mllib/regression.py 1 addition, 1 deletionpython/pyspark/mllib/regression.py
- python/pyspark/mllib/stat/_statistics.py 2 additions, 1 deletionpython/pyspark/mllib/stat/_statistics.py
- python/pyspark/mllib/tree.py 6 additions, 6 deletionspython/pyspark/mllib/tree.py
- python/pyspark/rdd.py 28 additions, 26 deletionspython/pyspark/rdd.py
- python/pyspark/sql/dataframe.py 13 additions, 15 deletionspython/pyspark/sql/dataframe.py
- python/pyspark/sql/functions.py 6 additions, 5 deletionspython/pyspark/sql/functions.py
- python/pyspark/sql/streaming.py 6 additions, 4 deletionspython/pyspark/sql/streaming.py
- python/pyspark/streaming/context.py 1 addition, 1 deletionpython/pyspark/streaming/context.py
- python/pyspark/streaming/kinesis.py 2 additions, 2 deletionspython/pyspark/streaming/kinesis.py
Loading
Please register or sign in to comment