From 4a59e6ced541e7f67c23c012a9767edf16f6fb16 Mon Sep 17 00:00:00 2001 From: Yuri Ishizawa Date: Thu, 25 Jul 2024 11:32:44 -0300 Subject: [PATCH] DOC: Clarify row delete comparison to SQL --- doc/source/getting_started/comparison/comparison_with_sql.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/getting_started/comparison/comparison_with_sql.rst b/doc/source/getting_started/comparison/comparison_with_sql.rst index daa528c7d408a..dc0590f18751a 100644 --- a/doc/source/getting_started/comparison/comparison_with_sql.rst +++ b/doc/source/getting_started/comparison/comparison_with_sql.rst @@ -505,7 +505,7 @@ DELETE DELETE FROM tips WHERE tip > 9; -In pandas we select the rows that should remain instead of deleting them: +In pandas we select the rows that should remain instead of deleting the rows that should be removed: .. ipython:: python