From dc697d33d077d87e53cfe556192ad2e5c1191f6c Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Tue, 1 Sep 2020 17:21:35 +0300 Subject: [PATCH] docs(http): fix em-dashes not displaying correctly (#38665) Fixes #38662 PR Close #38665 --- aio/content/guide/http.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index f5d3cf009e..ef7002a693 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -957,11 +957,11 @@ as happens in the `search()` method. Rather than forward every `searchText` value directly to the injected `PackageSearchService`, the code in `ngOnInit()` pipes search values through three operators, so that a search value reaches the service only if it's a new value and the user has stopped typing. -* `debounceTime(500)`&emdash;Wait for the user to stop typing (1/2 second in this case). +* `debounceTime(500)`⁠—Wait for the user to stop typing (1/2 second in this case). -* `distinctUntilChanged()`&emdash;Wait until the search text changes. +* `distinctUntilChanged()`⁠—Wait until the search text changes. -* `switchMap()`&emdash;Send the search request to the service. +* `switchMap()`⁠—Send the search request to the service. The code sets `packages$` to this re-composed `Observable` of search results. The template subscribes to `packages$` with the [AsyncPipe](api/common/AsyncPipe)