From 5519597a688ec11d7695bc8c771c2c93523ba688 Mon Sep 17 00:00:00 2001 From: Juan Martinez <23458550+queue-tip@users.noreply.github.com> Date: Wed, 24 Aug 2022 06:49:18 -0400 Subject: [PATCH] Docs: Fix verb tense (#5413) --- docs/docs/contributing/architecture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/contributing/architecture.rst b/docs/docs/contributing/architecture.rst index 795a404d0..3857cb911 100644 --- a/docs/docs/contributing/architecture.rst +++ b/docs/docs/contributing/architecture.rst @@ -18,7 +18,7 @@ This has multiple benefits: Botocore utilizes an event-based architecture. Events such as `creating-client-class` and `before-send` are emitted for all boto3-requests. -When the decorator starts, Moto registers a hook into the `before-send`-event that allows us to intercept the HTTP-request that was about to be send. +When the decorator starts, Moto registers a hook into the `before-send`-event that allows us to intercept the HTTP-request that was about to be sent. For every intercepted request, Moto figures out which service/feature is called based on the HTTP request prepared by `boto3`, and calls our own stub instead.