Created by: acusti
this is a very straightforward typo fix. the cra-template
and cra-template-typescript
template/public/index.html
file includes an HTML comment giving instructions on running the project and creating a production bundle. currently, the first sentence is:
To begin the development, run
npm start
oryarn start
.
this PR changes the comment in both files to:
To begin the development server, run
npm start
oryarn start
.