Skip to content

Commit 8212c3f

Browse files
authored
Fix a typo in part3b.md
1 parent f0a781e commit 8212c3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/3/en/part3b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ When the application is deployed, we must create a [production build](https://re
253253

254254
A production build of applications created with <i>create-react-app</i> can be created with the command [npm run build](https://github.com/facebookincubator/create-react-app#npm-run-build-or-yarn-build).
255255

256-
Let's run this command from the <i>root of the notes frontend project</i> that we developend in [Part 2](/en/part2).
256+
Let's run this command from the <i>root of the notes frontend project</i> that we developed in [Part 2](/en/part2).
257257

258258
This creates a directory called <i>build</i> (which contains the only HTML file of our application, <i>index.html</i> ) which contains the directory <i>static</i>. [Minified](<https://en.wikipedia.org/wiki/Minification_(programming)>) version of our application's JavaScript code will be generated in the <i>static</i> directory. Even though the application code is in multiple files, all of the JavaScript will be minified into one file. All of the code from all of the application's dependencies will also be minified into this single file.
259259

0 commit comments

Comments
 (0)