Skip to content

Commit 1811c27

Browse files
authored
Merge pull request #20 from aimxnaim/study/11-rxjs-observables
rxjs PR and chapter 9 services fixed
2 parents 3b2eccc + 68bb9b2 commit 1811c27

File tree

20 files changed

+14816
-207
lines changed

20 files changed

+14816
-207
lines changed

07-directives-deep-dive/01-starting-project/package-lock.json

Lines changed: 75 additions & 203 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

09-services-deep-dive/src/app/logging.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { Injectable } from '@angular/core';
55
})
66
export class LoggingService {
77

8-
log(messgae: string){
8+
log(message: string){
99
const timeStamp = new Date().toLocaleTimeString();
10-
console.log(`[${timeStamp}]: ${messgae}`);
10+
console.log(`[${timeStamp}]: ${message}`);
1111
}
1212

1313
}

11-rxjs/.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)