While reading the book Numerical Linear Algebra by Trefethen & Bau, I came across the following example.
The authors indicate that $\|J\|_{\infty} = 2$. However, if I recall the definition of $\|\cdot\|_{\infty}$ correctly, $$\left\| \begin{bmatrix} 1 & -1 \end{bmatrix} \right\|_{\infty} = \max(\|1\|, \|{-1}\|)$$ which is obviously $1$. Is this just a typo (the argument still holds if $\|J\|_{\infty} = 1$) or am I misinterpreting something?

It is the subordinate matrix infinity norm defined as:
$$\|A\|_{\infty} =\max_{1 \leq i \leq m}\sum_{j=1}^{n}|a_{ij}|,$$ for the matrix $$A=\left( \begin{array}{ccc} a_{11}&\cdots&a_{1n}\\ \vdots & \ddots & \vdots \\ a_{m1}&\cdots&a_{mn} \end{array} \right). $$