Skip to content

Commit 7278a92

Browse files
author
anttiharju
committed
Fix formatting and a typo
While it looked fine in VS Code preview, it didn't get rendered properly in the final web page. The markdown engines are apparently different.
1 parent edd4cb9 commit 7278a92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/3/en/part3a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ What exactly is happening in that line of code? <em>notes.map(n => n.id)</em> cr
779779

780780
**NB:** Because this is not a frontend project and we are not working with React, the application <strong>is not created</strong> with create vite@latest -- --template react. You initialize this project with the <em>npm init</em> command that was demonstrated earlier in this part of the material.
781781

782-
**NB:** Because the "node_modules" is created using "npm init", it will not be excluded when you are trying to add your code to git using "git add .", therefore please create a file called ".getignore" and write "node_modules" so that git ignores it everytime you try to add, commit or push to a remote repo.
782+
**NB:** Because the "node\_modules" is created using "npm init", it will not be excluded when you are trying to add your code to git using "git add .", therefore please create a file called ".gitignore" and write "node\_modules" so that git ignores it everytime you try to add, commit or push to a remote repo.
783783

784784
**Strong recommendation:** When you are working on backend code, always keep an eye on what's going on in the terminal that is running your application.
785785

0 commit comments

Comments
 (0)