docs: fix html tags in changelog (#29411)

PR Close #29411
This commit is contained in:
Esteban Marin 2019-03-20 07:38:50 +01:00 committed by Matias Niemelä
parent afe3e72601
commit 41737bb4d3
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
### BREAKING CHANGES
* **core:** Certain elements (like `<tr>` or `<col>`) require parent elements to be of a certain type by the HTML specification
(ex. <tr> can only be inside <tbody> / <thead>). Before this change Angular template parser was auto-correcting
(ex. `<tr>` can only be inside `<tbody>` / `<thead>`). Before this change Angular template parser was auto-correcting
"invalid" HTML using the following rules:
- `<tr>` would be wrapped in `<tbody>` if not inside `<tbody>`, `<tfoot>` or `<thead>`;
- `<col>` would be wrapped in `<colgroup>` if not inside `<colgroup>`.