From a115d1dc0848d9f55d50de58689abf3541eb1e6d Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Tue, 27 Feb 2024 13:11:38 -0600 Subject: [PATCH] Fix a minor typo (#7400) --- docs/docs/getting_started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/getting_started.rst b/docs/docs/getting_started.rst index f0c467597..5ccb080eb 100644 --- a/docs/docs/getting_started.rst +++ b/docs/docs/getting_started.rst @@ -222,7 +222,7 @@ You need to ensure that the mocks are actually in place. export AWS_SESSION_TOKEN='testing' export AWS_DEFAULT_REGION='us-east-1' - #. Do no embed credentials directly in your code. This is always considered bad practice, regardless of whether you use Moto. It also makes it impossible to configure fake credentials for testing purposes. + #. Do not embed credentials directly in your code. This is always considered bad practice, regardless of whether you use Moto. It also makes it impossible to configure fake credentials for testing purposes. #. **VERY IMPORTANT**: ensure that you have your mocks set up *BEFORE* your `boto3` client is established.