Skip to content

Commit 85357f4

Browse files
authored
Merge pull request sudheerj#1 from peterblazejewicz/feat/proper-nouns
Correct proper nouns character case
2 parents 7cc6f13 + fd0ae72 commit 85357f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
|---- | ---------
99
|1 | [What is Angular?](#what-is-angular) |
1010
|2 | [What is the difference between AngularJS and Angular?](#what-is-the-difference-between-angularjs-and-angular?)|
11-
|3 | [What is typescript?](#what-is-typescript)|
11+
|3 | [What is TypeScript?](#what-is-typescript)|
1212
|4 | [Write a pictorial diagram of Angular architecture?](#write-a-pictorial-diagram-of-angular-architecture)|
1313
|5 | [What are the key components of Angular?](#what-are-the-key-components-of-angular?)|
1414
|6 | [What are directives?](#what-are-directives)|
@@ -19,7 +19,7 @@
1919
|11| [What are lifecycle hooks available?](#what-are-lifecycle-hooks-available)|
2020
|12| [What is a data binding?](#what-is-a-data-binding)|
2121
|13| [What is metadata?](#what-is-metadata)|
22-
|14| [What is angular CLI?](#what-is-angular-cli)|
22+
|14| [What is Angular CLI?](#what-is-angular-cli)|
2323
|15| [What is the difference between constructor and ngOnInit?](#what-is-the-difference-between-constructor-and-ngoninit?)|
2424
|16| [What is a service](#what-is-a-service)|
2525
|17| [What is dependency injection in Angular?](#what-is-dependency-injection-in-angular)|
@@ -37,7 +37,7 @@
3737

3838
1. ### What is Angular Framework?
3939

40-
Angular is a **typeScript-based open-source** front-end platform that makes it easy to build applications with in web/mobile/desktop. The major features of this framework such as declarative templates, dependency injection, end to end tooling, and many more other features are used to ease the development.
40+
Angular is a **TypeScript-based open-source** front-end platform that makes it easy to build applications with in web/mobile/desktop. The major features of this framework such as declarative templates, dependency injection, end to end tooling, and many more other features are used to ease the development.
4141

4242
2. ### What is the difference between AngularJS and Angular?
4343
Angular is a completely revived component-based framework in which an application is a tree of individual components.
@@ -52,13 +52,13 @@
5252
| Not a mobile friendly framework| Developed considering mobile platform|
5353
| Difficulty in SEO friendly application development| Ease to create SEO friendly applications|
5454

55-
3. ### What is typescript?
55+
3. ### What is TypeScript?
5656
TypeScript is a typed superset of JavaScript created by Microsoft that adds optional types, classes, async/await, and many other features, and compiles to plain JavaScript. Angular built entirely in TypeScript and used as a primary language.
5757
You can install it globally as
5858
```
5959
npm install -g typescript
6060
```
61-
Let's see a simple example of typescript usage,
61+
Let's see a simple example of TypeScript usage,
6262
```typescript
6363
function greeter(person: string) {
6464
return "Hello, " + person;

0 commit comments

Comments
 (0)