-
Hi everyone! I've been checking Koalas docs and I'd like to contribute on few things I've found to be incorrect, but this is not letting me help 😥: Line 1 in e971d6f Any hints on why this part of the docs is not public to contribute? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thanks for your contribution!! Koalas use sphinx to build the docs. So if you want to fix some API documents, you can fix the docstring in source codes. For example, if you want to fix koalas/databricks/koalas/frame.py Lines 8185 to 8238 in e971d6f After fix the docstring, you can check after building documents: https://koalas.readthedocs.io/en/latest/development/contributing.html#building-documentation Btw, Koalas is ported into PySpark from Apache Spark 3.2. So, if you're also interested in contributing to Apache Spark, you can contribute to PySpark side after the 3.2 release. |
Beta Was this translation helpful? Give feedback.
Thanks for your contribution!!
Koalas use sphinx to build the docs.
So if you want to fix some API documents, you can fix the docstring in source codes.
For example, if you want to fix
DataFrame.astype
API documents, fix the below docstring:koalas/databricks/koalas/frame.py
Lines 8185 to 8238 in e971d6f