diff --git a/2-ui/1-document/07-modifying-document/12-sort-table/solution.md b/2-ui/1-document/07-modifying-document/12-sort-table/solution.md
index 25dd58b0cf..31bcf87600 100644
--- a/2-ui/1-document/07-modifying-document/12-sort-table/solution.md
+++ b/2-ui/1-document/07-modifying-document/12-sort-table/solution.md
@@ -14,6 +14,6 @@ table.tBodies[0].append(...sortedRows);
3. Then sort them comparing by the content of the first `
` (the name field).
4. Now insert nodes in the right order by `.append(...sortedRows)`.
- Tables always have an implicit | element, so we need to take it and insert into it: a simple `table.append(...)` would fail.
+ Tables always have an implicit `` element, so we need to take it and insert into it: a simple `table.append(...)` would fail.
Please note: we don't have to remove them, just "re-insert", they leave the old place automatically.