This is an automated email from the ASF dual-hosted git repository.
ruifengz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 0e8d39e52eda [MINOR][DOCS] Remove redundant backtick in docstrings
0e8d39e52eda is described below
commit 0e8d39e52edaaf3b12830cb39a65755065d66832
Author: Joon Ro <[email protected]>
AuthorDate: Fri Mar 13 08:40:17 2026 +0800
[MINOR][DOCS] Remove redundant backtick in docstrings
### What changes were proposed in this pull request?
Removal of redundant backtick.
### Why are the changes needed?
Three backticks were used instead of two, breaking the format.
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
Documentation change, no test needed.
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #54775 from joonro/patch-1.
Authored-by: Joon Ro <[email protected]>
Signed-off-by: Ruifeng Zheng <[email protected]>
---
python/pyspark/sql/functions/builtin.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/python/pyspark/sql/functions/builtin.py
b/python/pyspark/sql/functions/builtin.py
index e2f85a753306..a3b511aac262 100644
--- a/python/pyspark/sql/functions/builtin.py
+++ b/python/pyspark/sql/functions/builtin.py
@@ -6969,7 +6969,7 @@ def first(col: "ColumnOrName", ignorenulls: bool = False)
-> Column:
col : :class:`~pyspark.sql.Column` or column name
column to fetch first value for.
ignorenulls : bool
- if first value is null then look for first non-null value. ``False```
by default.
+ if first value is null then look for first non-null value. ``False``
by default.
Returns
-------
@@ -7311,7 +7311,7 @@ def last(col: "ColumnOrName", ignorenulls: bool = False)
-> Column:
col : :class:`~pyspark.sql.Column` or column name
column to fetch last value for.
ignorenulls : bool
- if last value is null then look for non-null value. ``False``` by
default.
+ if last value is null then look for non-null value. ``False`` by
default.
Returns
-------
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]