Skip to content

Commit

Permalink
DOC: fix error messages on frame.update (PR pandas-dev#57637)
Browse files Browse the repository at this point in the history
  • Loading branch information
aureliobarbosa committed Mar 1, 2024
1 parent 6de3fce commit a62684f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -8788,7 +8788,7 @@ def update(
rows = other.index.intersection(self.index)
if rows.empty:
raise ValueError(
"Can't update dataframe when other has no index in common with "
"Update not allowed when other has no index in common with "
"this dataframe."
)

Expand Down

0 comments on commit a62684f

Please sign in to comment.