diff --git a/docs/developer-docs/latest/update-migration-guides/update-version.md b/docs/developer-docs/latest/update-migration-guides/update-version.md
index 6457b8f643..e7d6a8f306 100644
--- a/docs/developer-docs/latest/update-migration-guides/update-version.md
+++ b/docs/developer-docs/latest/update-migration-guides/update-version.md
@@ -12,7 +12,7 @@ Strapi periodically releases code improvements through upgrades. Upgrades contai
[Plugins extension](/developer-docs/latest/plugins/users-permissions.md) that create custom code or modify existing code will need to be updated and compared to the changes in the repository. Not updating the plugin extensions could break the application.
:::
-## Upgrading the dependencies
+## Step 1: Upgrade the dependencies
::: prerequisites
@@ -42,22 +42,40 @@ Strapi periodically releases code improvements through upgrades. Upgrades contai
3. !!!include(developer-docs/latest/update-migration-guides/migration-guides/v4/snippets/Install-npm-yarn)!!!
-## Reinitializing the application
+## Step 2: Rebuild the application
-Rebuild the administration panel and start the application:
+Rebuild the administration panel:
```sh
npm run build
-npm run develop
```
```sh
yarn build
+```
+
+
+
+
+## Step 3: Start the application
+
+Start the application and ensure that everything is working as expected:
+
+
+
+
+```sh
+npm run develop
+```
+
+
+
+```sh
yarn develop
```