docs: correct appearance of numbering (#39638)
Ordered list was appearing as 1,2,*1*,4,5,6 due to code block interrupting the flow. This fixes the list to appear as 1,2,3,4,5,6. PR Close #39638
This commit is contained in:
parent
6d1347363e
commit
3be344cdc2
|
@ -108,7 +108,7 @@ To understand how change detection works, first consider when the application ne
|
|||
|
||||
<code-example path="user-input/src/app/click-me.component.ts" region="click-me-component" header="src/app/click-me.component.ts"></code-example>
|
||||
|
||||
1. HTTP Data Request. You can also get data from a server through an HTTP request. For example:
|
||||
3. HTTP Data Request. You can also get data from a server through an HTTP request. For example:
|
||||
|
||||
```typescript
|
||||
@Component({
|
||||
|
|
Loading…
Reference in New Issue