From 586675894c3b099bb50ad2f07e46d89277ee29bb Mon Sep 17 00:00:00 2001 From: Sascha Depold Date: Mon, 1 May 2023 15:54:05 +0200 Subject: [PATCH] Fix typo in readme (#604) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7d2e8e7..ad4d38e0 100644 --- a/README.md +++ b/README.md @@ -280,7 +280,7 @@ const umzug = new Umzug({ #### Modifying the parameters passed to your migration methods -Sometimes it's necessary to modify the parameters `umzug` will pass to your migration methods when the library calls the `up` and `down` methods for each migration. This is the case when using migrations currently generated using `sequilize-cli`. In this case you can use the `resolve` fuction during migration configuration to determine which parameters will be passed to the relevant method +Sometimes it's necessary to modify the parameters `umzug` will pass to your migration methods when the library calls the `up` and `down` methods for each migration. This is the case when using migrations currently generated using `sequelize-cli`. In this case you can use the `resolve` fuction during migration configuration to determine which parameters will be passed to the relevant method ```js import { Sequelize } from 'sequelize'