From 813067551c1c64afeb0e57372f49f7ecd58e96fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Mon, 26 Aug 2024 14:11:20 +0200 Subject: [PATCH] Use more ergonomic atoms in docs --- lib/explorer/data_frame.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/explorer/data_frame.ex b/lib/explorer/data_frame.ex index 3d10f9954..e40ea0a23 100644 --- a/lib/explorer/data_frame.ex +++ b/lib/explorer/data_frame.ex @@ -5061,7 +5061,7 @@ defmodule Explorer.DataFrame do iex> left = Explorer.DataFrame.new(a: [1, 2, 3], b: ["a", "b", "c"]) iex> right = Explorer.DataFrame.new(d: [1, 2, 2], c: ["d", "e", "f"]) - iex> Explorer.DataFrame.join(left, right, on: [{"a", "d"}]) + iex> Explorer.DataFrame.join(left, right, on: [a: :d]) #Explorer.DataFrame< Polars[3 x 3] a s64 [1, 2, 2]