From 5c33d201ee1d5c1be56dbc3271540a973186006d Mon Sep 17 00:00:00 2001 From: Danny Yang Date: Tue, 10 Dec 2024 06:57:35 -0800 Subject: [PATCH] Update docs/guides/writing_stubs.rst Co-authored-by: Rebecca Chen --- docs/guides/writing_stubs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/writing_stubs.rst b/docs/guides/writing_stubs.rst index cebb5222..cb092bb9 100644 --- a/docs/guides/writing_stubs.rst +++ b/docs/guides/writing_stubs.rst @@ -93,7 +93,7 @@ Liskov substitutability or detecting problematic overloads. It may be instructive to examine `typeshed `__'s `setup for testing stubs `__. -To suppress type errors on stubs, use a `# type: ignore` comment. Refer to the style guide for +To suppress type errors in stubs, use `# type: ignore` comments. Refer to the style guide for error suppression formats specific to individual typecheckers. ..