You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,8 +100,8 @@ You can download the PDF and Epub version of this repository from the latest run
100
100
|47|[What is the shorthand notation for subscribe method?](#what-is-the-shorthand-notation-for-subscribe-method)|
101
101
|48|[What are the utility functions provided by RxJS?](#what-are-the-utility-functions-provided-by-rxjs)|
102
102
|49|[What are observable creation functions?](#what-are-observable-creation-functions)|
103
-
|50|[What will happen if you do not supply handler for observer?](#what-will-happen-if-you-do-not-supply-handler-for-observer)|
104
-
|51|[What are angular elements?](#what-are-angular-elements)|
103
+
|50|[What will happen if you do not supply handler for the observer?](#what-will-happen-if-you-do-not-supply-handler-for-the-observer)|
104
+
|51|[What are Angular elements?](#what-are-angular-elements)|
105
105
|52|[What is the browser support of Angular Elements?](#what-is-the-browser-support-of-angular-elements)|
106
106
|53|[What are custom elements?](#what-are-custom-elements)|
107
107
|54|[Do I need to bootstrap custom elements?](#do-i-need-to-bootstrap-custom-elements)|
@@ -1274,13 +1274,13 @@ You can download the PDF and Epub version of this repository from the latest run
1274
1274
1275
1275
**[⬆ Back to Top](#table-of-contents)**
1276
1276
1277
-
50. ### What will happen if you do not supply handler for observer?
1278
-
Normally an observer object can define any combination of next, error and complete notification type handlers. If you don't supply a handler for a notification type, the observer just ignores notifications of that type.
1277
+
50. ### What will happen if you do not supply handler for the observer?
1278
+
Usually, an observer object can define any combination of `next`, `error`, and `complete` notification type handlers. If you don't supply a handler for a notification type, the observer just ignores notifications of that type.
1279
1279
1280
1280
**[⬆ Back to Top](#table-of-contents)**
1281
1281
1282
-
51. ### What are angular elements?
1283
-
Angular elements are Angular components packaged as **custom elements**(a web standard for defining new HTML elements in a framework-agnostic way). Angular Elements hosts an Angular component, providing a bridge between the data and logic defined in the component and standard DOM APIs, thus, providing a way to use Angular components in `non-Angular environments`.
1282
+
51. ### What are Angular elements?
1283
+
Angular elements are Angular components packaged as **custom elements**(a web standard for defining new HTML elements in a framework-agnostic way). Angular Elements host an Angular component, providing a bridge between the data and the logic defined in the component and the standard DOM APIs, thus, providing a way to use Angular components in `non-Angular environments`.
0 commit comments