From 7e9ad9e7334fc82756951c9ed71be6b08437414b Mon Sep 17 00:00:00 2001 From: Peter Law Date: Wed, 25 Mar 2020 22:32:53 +0000 Subject: [PATCH] Fix typo --- test/completion/pep0484_generic_parameters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/completion/pep0484_generic_parameters.py b/test/completion/pep0484_generic_parameters.py index efc7c926..89572d99 100644 --- a/test/completion/pep0484_generic_parameters.py +++ b/test/completion/pep0484_generic_parameters.py @@ -208,7 +208,7 @@ for x9 in unwrap_custom2(custom_instance_list_int): x9 -# Test that classes which have gneeric parents but are not generic themselves +# Test that classes which have generic parents but are not generic themselves # are still inferred correctly. class Specialised(Mapping[int, str]): pass @@ -223,7 +223,7 @@ first(specialised_instance) values(specialised_instance)[0] -# Test that classes which have gneeric ancestry but neither they nor their +# Test that classes which have generic ancestry but neither they nor their # parents are not generic are still inferred correctly. class ChildOfSpecialised(Specialised): pass