From d79e81e8e658544cd9406de8e2e72df9bec3ef8e Mon Sep 17 00:00:00 2001 From: William Andrea <22385371+wjandrea@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:54:28 -0400 Subject: [PATCH] Fix diction: "e.g." -> "i.e." "e.g." means "for example", "i.e." means "that is" --- pandas/io/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/html.py b/pandas/io/html.py index 42f5266e7649b..db4c5f8507946 100644 --- a/pandas/io/html.py +++ b/pandas/io/html.py @@ -1178,7 +1178,7 @@ def read_html( **after** `skiprows` is applied. This function will *always* return a list of :class:`DataFrame` *or* - it will fail, e.g., it will *not* return an empty list. + it will fail, i.e., it will *not* return an empty list. Examples --------