Skip to content

Commit 75823dd

Browse files
committed
small fix
1 parent 5636ac0 commit 75823dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2968,7 +2968,7 @@ def union(self, other, sort=None):
29682968
# Now it's:
29692969
# * float | [u]int -> float
29702970
# * uint64 | signed int -> object
2971-
# We may change union(float [u]int) to go to object.
2971+
# We may change union(float | [u]int) to go to object.
29722972

29732973
left = self.astype(dtype, copy=False)
29742974
right = other.astype(dtype, copy=False)

0 commit comments

Comments
 (0)