From 1c47b2b202a71b626963be49f5a6d3db3bc0c8d7 Mon Sep 17 00:00:00 2001 From: EricLBuehler Date: Wed, 12 Jun 2024 15:17:27 -0400 Subject: [PATCH] Typo --- python_special_method_derive/tests/functional.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_special_method_derive/tests/functional.rs b/python_special_method_derive/tests/functional.rs index 4cbc3ace..b46904a7 100644 --- a/python_special_method_derive/tests/functional.rs +++ b/python_special_method_derive/tests/functional.rs @@ -32,7 +32,7 @@ fn test_with_str() { name: 3.14159, } .__str__(); - // TOOD: Is this a good __str__ output? How can we better show it or should they be different? + // TODO: Is this a good __str__ output? How can we better show it or should they be different? assert_eq!( "WithFields(dora: `299792458`, my: `Hello world`, name: `3.14159`)", &res @@ -47,7 +47,7 @@ fn test_with_repr() { name: 3.14159, } .__repr__(); - // TOOD: Is this a good __repr__ output? How can we better show it or should they be different? + // TODO: Is this a good __repr__ output? How can we better show it or should they be different? assert_eq!( "WithFields(dora: 299792458, my: \"Hello world\", name: 3.14159)", &res