From ce9edd6ce232e26fceba14f35a0cc9a321ec3e1d Mon Sep 17 00:00:00 2001 From: Joon Ro Date: Thu, 12 Mar 2026 08:51:13 -0700 Subject: [PATCH] Remove redundant backtick --- 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 e2f85a7533063..a3b511aac2627 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 -------