Skip to content

Commit 4788bae

Browse files
francesco-camaioneHyukjinKwon
authored andcommitted
[MINOR][PYSPARK][SQL] fixed a typo in python/pyspark/sql/column.py
**What changes were proposed in this pull request?** Fixed a minor typo in the python/pyspark/sql/column.py, removing an unnecessary double quotation mark ("). **Why are the changes needed?** To improve the clarity and professionalism of the documentation by correcting a typographical error. **Does this PR introduce any user-facing change?** No. This change only affects the documentation and does not alter any functionality. **How was this patch tested?** As this is a documentation-only change, no tests were required. **Was this patch authored or co-authored using generative AI tooling?** No. Closes #50853 from francesco-camaione/fix-typo-fc. Authored-by: Francesco Camaione <francesco.camaione@gmail.com> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
1 parent aa89883 commit 4788bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/column.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def __contains__(self, item: Any) -> None:
318318
def bitwiseOR(
319319
self, other: Union["Column", "LiteralType", "DecimalLiteral", "DateTimeLiteral"]
320320
) -> "Column":
321-
""" "
321+
"""
322322
Compute bitwise OR of this expression with another expression.
323323
324324
.. versionchanged:: 3.4.0

0 commit comments

Comments
 (0)