From 4789252991c6f5a083f116a3a6bf1e34dcee2105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Frutos=20Hern=C3=A1ndez?= Date: Mon, 26 Jul 2021 08:50:39 +0200 Subject: [PATCH] Update app-anatomy.md (#9765) Fix typo Co-authored-by: Marko --- docs/basics/app-anatomy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/app-anatomy.md b/docs/basics/app-anatomy.md index 0373d24aaf..d257202793 100644 --- a/docs/basics/app-anatomy.md +++ b/docs/basics/app-anatomy.md @@ -135,7 +135,7 @@ See an example of a `MakeTestEncodingConfig` from `simapp`: Modules must implement [interfaces](../building-modules/module-manager.md#application-module-interfaces) defined in the Cosmos SDK, [`AppModuleBasic`](../building-modules/module-manager.md#appmodulebasic) and [`AppModule`](../building-modules/module-manager.md#appmodule). The former implements basic non-dependant elements of the module, such as the `codec`, while the latter handles the bulk of the module methods (including methods that require references to other modules' `keeper`s). Both the `AppModule` and `AppModuleBasic` types are defined in a file called `./module.go`. -`AppModule` exposes a collection of useful methods on the module that facilitates the composition of modules into a coherent application. These methods are are called from the `module manager`(../building-modules/module-manager.md#manager), which manages the application's collection of modules. +`AppModule` exposes a collection of useful methods on the module that facilitates the composition of modules into a coherent application. These methods are called from the `module manager`(../building-modules/module-manager.md#manager), which manages the application's collection of modules. ### `Msg` Services