Skip to content

Commit 265c5db

Browse files
Fix typo in error message
1 parent 698afca commit 265c5db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/explorer/data_frame.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5517,7 +5517,7 @@ defmodule Explorer.DataFrame do
55175517
else
55185518
message =
55195519
"""
5520-
columns dtypes must be compatible for all dataframes
5520+
column dtypes must be compatible for all dataframes
55215521
55225522
* dataframe 0, column #{name} has dtype:
55235523

test/explorer/data_frame/lazy_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@ defmodule Explorer.DataFrame.LazyTest do
15171517

15181518
assert_raise ArgumentError,
15191519
"""
1520-
columns dtypes must be compatible for all dataframes
1520+
column dtypes must be compatible for all dataframes
15211521
15221522
* dataframe 0, column y has dtype:
15231523

test/explorer/data_frame_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2902,7 +2902,7 @@ defmodule Explorer.DataFrameTest do
29022902

29032903
assert_raise ArgumentError,
29042904
"""
2905-
columns dtypes must be compatible for all dataframes
2905+
column dtypes must be compatible for all dataframes
29062906
29072907
* dataframe 0, column y has dtype:
29082908

0 commit comments

Comments
 (0)