Skip to content

Commit 34a477a

Browse files
committed
Fix typo in Manipulating Pages. Closes #212
1 parent 16311fd commit 34a477a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ \section{Sortable Lists}\label{s:pages-sort-list}
357357
358358
\begin{minted}{js}
359359
const sortLists = () => {
360-
const allLists = Array.from(document.querySelectorAll('#sorted'))
360+
const lists = Array.from(document.querySelectorAll('#sorted'))
361361
lists.forEach((list) => {
362362
const children = Array.from(list.childNodes)
363363
.filter(c => c.nodeName !== '#text')
@@ -535,7 +535,7 @@ \section{Bibliographic Citations}\label{s:pages-citations}
535535
</p>
536536
<hr/>
537537
<p><em>Visit <a href="http://somewhere.org">the author's site</a>.</em></p>
538-
538+
539539
</body>
540540
</html>
541541
\end{minted}

src/pages/sort-lists.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const sortLists = () => {
2-
const allLists = Array.from(document.querySelectorAll('#sorted'))
2+
const lists = Array.from(document.querySelectorAll('#sorted'))
33
lists.forEach((list) => {
44
const children = Array.from(list.childNodes)
55
.filter(c => c.nodeName !== '#text')

0 commit comments

Comments
 (0)