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
@@ -87,8 +87,8 @@ You can download the PDF and Epub version of this repository from the latest run
87
87
|47|[What is the shorthand notation for subscribe method?](#what-is-the-shorthand-notation-for-subscribe-method)|
88
88
|48|[What are the utility functions provided by RxJS?](#what-are-the-utility-functions-provided-by-rxjs)|
89
89
|49|[What are observable creation functions?](#what-are-observable-creation-functions)|
90
-
|50|[What will happen if you do not supply handler for observer?](#what-will-happen-if-you-do-not-supply-handler-for-observer)|
91
-
|51|[What are angular elements?](#what-are-angular-elements)|
90
+
|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)|
91
+
|51|[What are Angular elements?](#what-are-angular-elements)|
92
92
|52|[What is the browser support of Angular Elements?](#what-is-the-browser-support-of-angular-elements)|
93
93
|53|[What are custom elements?](#what-are-custom-elements)|
94
94
|54|[Do I need to bootstrap custom elements?](#do-i-need-to-bootstrap-custom-elements)|
@@ -1261,13 +1261,13 @@ You can download the PDF and Epub version of this repository from the latest run
1261
1261
1262
1262
**[⬆ Back to Top](#table-of-contents)**
1263
1263
1264
-
50. ### What will happen if you do not supply handler for observer?
1265
-
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.
1264
+
50. ### What will happen if you do not supply handler for the observer?
1265
+
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.
1266
1266
1267
1267
**[⬆ Back to Top](#table-of-contents)**
1268
1268
1269
-
51. ### What are angular elements?
1270
-
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`.
1269
+
51. ### What are Angular elements?
1270
+
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