From 0a9e9254e88dc7284aad0d291491f721dbf7b521 Mon Sep 17 00:00:00 2001 From: Trevor Bergeron Date: Thu, 18 Sep 2025 22:41:55 +0000 Subject: [PATCH] chore: Fix join doc example --- third_party/bigframes_vendored/pandas/core/frame.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third_party/bigframes_vendored/pandas/core/frame.py b/third_party/bigframes_vendored/pandas/core/frame.py index 953ece9beb..1d8f5cbace 100644 --- a/third_party/bigframes_vendored/pandas/core/frame.py +++ b/third_party/bigframes_vendored/pandas/core/frame.py @@ -4672,10 +4672,10 @@ def join( Another option to join using the key columns is to use the on parameter: - >>> df1.join(df2, on="col1", how="right") + >>> df1.join(df2, on="col2", how="right") col1 col2 col3 col4 - 11 foo 3 - 22 baz 4 + 11 foo 3 + 22 baz 4 [2 rows x 4 columns]