From a67386cc83685319bf41654cab01db601a2972d9 Mon Sep 17 00:00:00 2001 From: Israelobuk Date: Fri, 26 Jun 2026 14:02:41 -0400 Subject: [PATCH] [MINOR][PYTHON][DOCS] Improve PySpark contributing documentation wording --- python/docs/source/development/contributing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/docs/source/development/contributing.rst b/python/docs/source/development/contributing.rst index ddfd776c8f85..68990eaae528 100644 --- a/python/docs/source/development/contributing.rst +++ b/python/docs/source/development/contributing.rst @@ -29,7 +29,7 @@ Contributing by Testing Releases -------------------------------- Before the official release, PySpark release candidates are shared in the `dev@spark.apache.org `_ mailing list to vote on. -This release candidates can be easily installed via pip. For example, in case of Spark 3.0.0 RC1, you can install as below: +These release candidates can be easily installed via pip. For example, in case of Spark 3.0.0 RC1, you can install as below: .. code-block:: bash @@ -48,7 +48,7 @@ Contributing Documentation Changes The release documentation is located under Spark's `docs `_ directory. `README.md `_ describes the required dependencies and steps -to generate the documentations. Usually, PySpark documentation is tested with the command below +to generate the documentation. Usually, PySpark documentation is tested with the command below under the `docs `_ directory: .. code-block:: bash @@ -81,7 +81,7 @@ Additionally, there are a couple of additional notes to keep in mind when contri Apache Spark is an unified engine that provides a consistent API layer. In general, the APIs are consistently supported across other languages. * PySpark-specific APIs can be accepted - As long as they are Pythonic and do not conflict with other existent APIs, it is fine to raise a API request, for example, decorator usage of UDFs. + As long as they are Pythonic and do not conflict with other existent APIs, it is fine to raise an API request, for example, decorator usage of UDFs. * Adjust the corresponding type hints if you extend or modify public API See `Contributing and Maintaining Type Hints`_ for details.