From 4541b0481cd42e8508576ec67c631f4189575091 Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Sun, 3 Nov 2019 22:52:10 -0700 Subject: [PATCH] Update solution.md Putting `` in backticks. Wasn't showing. --- 2-ui/1-document/07-modifying-document/12-sort-table/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.