Skip to content

Commit 57c90c0

Browse files
committed
update on readme
1 parent e8f059a commit 57c90c0

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

Diff for: 11 Axios/07b_interceptors/README.MD

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,4 +255,4 @@ document.addEventListener('DOMContentLoaded', () => {
255255
/*diff*/
256256
});
257257
```
258-
* Lets test that is working, with and without authenticaton
258+
* Let's test that is working, with and without authenticaton

Diff for: 14 Async await/00_start/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm start
2525

2626
### Before steps create project scaffolding
2727

28-
* Create _package.json_, use `npm init` default initialization
28+
* Create _package.json_, use `npm init -y` default initialization
2929
* Create _src_ folder on _rootDir_
3030
* Create _index.html_ on _rootDir_
3131

Diff for: auth/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const bodyParser = require('body-parser');
33
const cors = require('cors');
44
const { resolveLogin } = require('./credentialResolver');
55

6-
76
const app = express();
87
const PORT = process.env.PORT || 8887;
98

Diff for: server-in-memory/server.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ app.use(cookieParser());
1717
app.use(cors());
1818
const jwtCheck = expressjwt({
1919
secret: 'mysupersecretkey',
20-
})
21-
20+
});
2221

2322
app.use('/api/users', jwtCheck, users);
2423
app.use('/api/cars', jwtCheck, cars);

0 commit comments

Comments
 (0)