From 5f0d803645b487a5c3453ab5e92741ae37fe0dc6 Mon Sep 17 00:00:00 2001 From: Eric Elliott Date: Fri, 8 Sep 2023 11:25:04 -0700 Subject: [PATCH] Update README.md Corrected typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c5824b0d..3d35a359 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ Deploying a contract in the router pattern looks a little different from deployi 1. Deploy all your `Extension` contracts first. You only need to do this once per `Extension`. Deployed `Extensions` can be re-used by many different `Router` contracts. 2. Deploy your `Router` contract that implements `BaseRouter`. -3. Add extensions to youe router via the API available in `BaseRouter`. (Alternatively, you can use `BaseRouterDefaults` which can be initialized with a set of extensions on deployment.) +3. Add extensions to your router via the API available in `BaseRouter`. (Alternatively, you can use `BaseRouterDefaults` which can be initialized with a set of extensions on deployment.) ### `Extensions` - Grouping logical functionality together