From d58d91a6b282c263145ed6dcde79ab24daf9a733 Mon Sep 17 00:00:00 2001 From: Colby Rome Date: Mon, 28 Oct 2019 18:19:26 -0400 Subject: [PATCH] website: Fix a missing word in the Module Composition page --- website/docs/modules/composition.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/modules/composition.html.markdown b/website/docs/modules/composition.html.markdown index 18a5497294..53dbf228be 100644 --- a/website/docs/modules/composition.html.markdown +++ b/website/docs/modules/composition.html.markdown @@ -117,7 +117,7 @@ reasons, certain infrastructure may be shared across multiple development environments, while in production the infrastructure is unique and managed directly by the production configuration. -Rather than trying to write a module that itself tries detect whether something +Rather than trying to write a module that itself tries to detect whether something exists and create it if not, we recommend applying the dependency inversion approach: making the module accept the object it needs as an argument, via an input variable.