From df4c5c03d14a53448a232a78eeab94017ac7e7ba Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Thu, 28 Mar 2024 15:33:47 -0400 Subject: [PATCH] Fix wrong/unclear grammar in test_instance_dir docstring --- test/deprecation/test_cmd_git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/deprecation/test_cmd_git.py b/test/deprecation/test_cmd_git.py index b6af5c770..d312b8778 100644 --- a/test/deprecation/test_cmd_git.py +++ b/test/deprecation/test_cmd_git.py @@ -383,7 +383,7 @@ def test_class_dir() -> None: def test_instance_dir() -> None: """dir() on Git objects includes its statically known attributes. - This is like test_class_dir, but for Git instance rather than the class itself. + This is like test_class_dir, but for Git instances rather than the class itself. """ instance = Git() actual = set(dir(instance))