Update implement-merge-sort.english.md (#29007)

This commit is contained in:
Aculisme
2019-02-03 06:14:01 +01:00
committed by Niraj Nandish
parent 82a58dc1b8
commit a455b601dc
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ challengeType: 2
## Description
<section id='description'>
The next part of a good package.json is the description-field, where a short but informative description about your project belongs.
If you some day plan to publishing a package to npm, remember that this is the string that should sell your idea to the user when they decide whether to install your package or not. However, thats not the only use case for the description: Since its a great way to summarize what a project does, its just as important for your normal Node.js-projects to help other developers, future maintainers or even your future self understand the project quickly.
If you some day plan to publish a package to npm, remember that this is the string that should sell your idea to the user when they decide whether to install your package or not. However, thats not the only use case for the description: Its a great way to summarize what a project does, its just as important for your normal Node.js-projects to help other developers, future maintainers or even your future self understand the project quickly.
Regardless of what you plan for your project, a description is definitely recommended. Lets add something similar to this:
<code>"description": "A project that does something awesome",</code>
Instructions