From 85d83b71fc4026589c40424fd5338ce720631c3c Mon Sep 17 00:00:00 2001 From: Julio-Assis Date: Sat, 14 Aug 2021 10:15:01 +0100 Subject: [PATCH] Fix minor typo in Context Manager docs --- context_managers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context_managers.rst b/context_managers.rst index 261ebd6..9a02be5 100644 --- a/context_managers.rst +++ b/context_managers.rst @@ -84,7 +84,7 @@ to decide how to close the file and if any further steps are required. In our case we are not paying any attention to them. What if our file object raises an exception? We might be trying to -access a method on the file object which it does not supports. For +access a method on the file object which it does not support. For instance: .. code:: python