diff --git a/doc/development/migration_style_guide.md b/doc/development/migration_style_guide.md
index 1c13b0945820e4decb1ebbff38ef85e95c15186e..02e024ca15aa9291f8014ad5d411f3cad77cb9ba 100644
--- a/doc/development/migration_style_guide.md
+++ b/doc/development/migration_style_guide.md
@@ -116,7 +116,7 @@ Example with Arel:
 users = Arel::Table.new(:users)
 users.group(users[:user_id]).having(users[:id].count.gt(5))
 
-#updtae other tables with this results
+#update other tables with these results
 ```
 
 Example with plain SQL and `quote_string` helper: